Files
FA_WEB/SytelineSaAppEfDataModel/Services/IMaterialTransactionService.cs
Piotr Kus 94c4586c35 * Additional Functions added to services
* Changes in MaterialTransaction mapping
2025-04-02 21:25:13 +02:00

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);
}