10 lines
200 B
C#
10 lines
200 B
C#
using EgwCoreLib.Lux.Data.DbModel.Cost;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Repository.Cost
|
|
{
|
|
public interface ICostDriverRepository
|
|
{
|
|
Task<List<CostDriverModel>> GetAllAsync();
|
|
}
|
|
}
|