* Added MaterialTransaction entity, dto and service
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using SytelineSaAppEfDataModel.Dtos;
|
||||
|
||||
namespace SytelineSaAppEfDataModel.Services;
|
||||
|
||||
public interface IMaterialTransactionService
|
||||
{
|
||||
Task<IEnumerable<MaterialTransactionDto>> GetAll();
|
||||
Task<MaterialTransactionDto?> GetByWzNumber(string wzNumber);
|
||||
Task<IEnumerable<MaterialTransactionDto?>> GetByOrderNumber(string orderNumber);
|
||||
}
|
||||
Reference in New Issue
Block a user