* Added managing EdiCustomerOrderTranslations

This commit is contained in:
2025-04-12 07:12:14 +02:00
parent 6977708099
commit 7660db1c0b
9 changed files with 185 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
using SytelineSaAppEfDataModel.Dtos;
namespace SytelineSaAppEfDataModel.Services;
public interface IEdiCustomerOrderTranslateService
{
Task<IEnumerable<EdiCustomerOrderTranslateDto>> GetAll();
Task Delete(int id);
}