Files
FA_WEB/SytelineSaAppEfDataModel/Services/ICustomerTpService.cs
Piotr Kus 6139ce97d7 * Added new Entities and Dtos
* Mapping new classes
* Added new services and Controllers in API
2025-08-07 06:46:43 +02:00

8 lines
175 B
C#

using SytelineSaAppEfDataModel.Dtos;
namespace SytelineSaAppEfDataModel.Services;
public interface ICustomerTpService
{
Task<IList<CustomerTpDto>> GetAllCustomersTp();
}