* Introduced new WzRowMareli service to handle new client
This commit is contained in:
11
SytelineSaAppEfDataModel/Services/IWzRowMareliService.cs
Normal file
11
SytelineSaAppEfDataModel/Services/IWzRowMareliService.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using SytelineSaAppEfDataModel.Dtos;
|
||||
|
||||
namespace SytelineSaAppEfDataModel.Services;
|
||||
|
||||
public interface IWzRowMareliService
|
||||
{
|
||||
Task<IEnumerable<WzRowMareliDto>> GetAll();
|
||||
Task CreateRows(IEnumerable<WzRowMareliDto> rows);
|
||||
Task<IEnumerable<WzRowMareliDto>> GetByWzHeaderId(Guid wzHeaderId);
|
||||
Task UpdateRows(IEnumerable<WzRowMareliDto> rows);
|
||||
}
|
||||
Reference in New Issue
Block a user