* Extended CustomerOrdersController and CustomerOrderService

This commit is contained in:
2025-12-23 12:00:28 +01:00
parent c4b1561cbc
commit e9a3e91082
3 changed files with 15 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ namespace SytelineSaAppEfDataModel.Services
Task<IList<CustomerOrderDto>> GetListByCustomerAndPo(string customerNumber, int customerSequence,
string poNumber);
Task<CustomerOrderDto?> GetByPo(string poNumber);
Task<List<CustomerOrderDto>> GetListByCustomer(string customerNumber, int customerSequence);
Task<IEnumerable<CustomerOrderLineDto>?> GetLinesByCoNumber(string customerOrderNumber);
Task<IEnumerable<CustomerOrderLineItemDto>?> GetItemsByCoNumber(string customerOrderNumber);