11 lines
358 B
C#
11 lines
358 B
C#
using SytelineSaAppEfDataModel.Dtos;
|
|
|
|
namespace SytelineSaAppEfDataModel.Services;
|
|
|
|
public interface IWzRowMareliService
|
|
{
|
|
Task<IEnumerable<WzRowMarelliDto>> GetAll();
|
|
Task CreateRows(IEnumerable<WzRowMarelliDto> rows);
|
|
Task<IEnumerable<WzRowMarelliDto>> GetByWzHeaderId(Guid wzHeaderId);
|
|
Task UpdateRows(IEnumerable<WzRowMarelliDto> rows);
|
|
} |