Files
FA_WEB/SytelineSaAppEfDataModel/Services/IMaterialTransactionService.cs

10 lines
339 B
C#

using SytelineSaAppEfDataModel.Dtos;
namespace SytelineSaAppEfDataModel.Services;
public interface IMaterialTransactionService
{
Task<IEnumerable<MaterialTransactionDto>> GetAll();
Task<MaterialTransactionDto?> GetByWzNumber(string wzNumber);
Task<IEnumerable<MaterialTransactionDto?>> GetByOrderNumber(string orderNumber);
}