Files

12 lines
276 B
C#

namespace EgwCoreLib.Lux.Data.Services.Cost
{
public interface ICostDriverService
{
/// <summary>
/// Elenco completo CostDriver da DB
/// </summary>
/// <returns></returns>
Task<List<CostDriverModel>> GetAllAsync();
}
}