Files
lux/EgwCoreLib.Lux.Data/Repository/Cost/ICostDriverRepository.cs
T
2026-03-25 07:27:51 +01:00

8 lines
159 B
C#

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