9 lines
224 B
C#
9 lines
224 B
C#
using SytelineSaAppEfDataModel.Dtos;
|
|
|
|
namespace SytelineSaAppEfDataModel.Services;
|
|
|
|
public interface IWzRowMeyleService
|
|
{
|
|
Task<IEnumerable<WzRowMeyleDto>> GetAll();
|
|
Task CreateRows(IEnumerable<WzRowMeyleDto> rows);
|
|
} |