11 lines
354 B
C#
11 lines
354 B
C#
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);
|
|
} |