Files
FA_WEB/SytelineSaAppEfDataModel/Services/IEdiLogService.cs
trencik91 0199467f72 * Extended of Dtos
* Added new Services and Controllers
2025-09-03 15:04:22 +02:00

8 lines
166 B
C#

using SytelineSaAppEfDataModel.Dtos;
namespace SytelineSaAppEfDataModel.Services;
public interface IEdiLogService
{
Task<bool> AddEdiLog(EdiLogDto ediLog);
}