Files
lux/EgwCoreLib.Lux.Data/Repository/Cost/ICostDriverRepository.cs
T

10 lines
200 B
C#

using EgwCoreLib.Lux.Data.DbModel.Cost;
namespace EgwCoreLib.Lux.Data.Repository.Cost
{
public interface ICostDriverRepository
{
Task<List<CostDriverModel>> GetAllAsync();
}
}