Files
FA_WEB/SytelineSaAppEfDataModel/Services/IWzHeaderService.cs
Piotr Kus f58d2ab04c * Further improvements of Warehouse view
* Fixed issue with not saving Products updates
2025-05-24 21:47:32 +02:00

11 lines
352 B
C#

using SytelineSaAppEfDataModel.Dtos;
namespace SytelineSaAppEfDataModel.Services;
public interface IWzHeaderService
{
Task<IEnumerable<WzHeaderDto>> GetAll();
Task<IEnumerable<WzHeaderDto>> GetByCustomerNumber(string customerNumber, int customerSequence);
Task CreateHeader(WzHeaderDto wzHeader);
Task<WzHeaderDto> GetById(Guid id);
}