* Added MaterialTransaction entity, dto and service

This commit is contained in:
2025-04-01 20:49:31 +02:00
parent 0eaf941021
commit 3f0da4ba79
6 changed files with 299 additions and 5 deletions

View File

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