11 lines
426 B
C#
11 lines
426 B
C#
using SytelineSaAppEfDataModel.Dtos;
|
|
|
|
namespace SytelineSaAppEfDataModel.Services;
|
|
|
|
public interface IMaterialTransactionService
|
|
{
|
|
Task<IEnumerable<MaterialTransactionDto>> GetAll();
|
|
Task<MaterialTransactionDto?> GetByWzNumber(string wzNumber);
|
|
Task<IEnumerable<MaterialTransactionDto?>> GetByWzNumbers(ISet<string> wzNumbers);
|
|
Task<IEnumerable<MaterialTransactionDto?>> GetByOrderNumber(string orderNumber);
|
|
} |