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

10 lines
237 B
C#

namespace EgwCoreLib.Lux.Data.Repository.Utils
{
public interface ICounterRepository
{
Task<List<CounterModel>> GetAllAsync(int? yearRef = null);
Task<int> GetNextAsync(int yearRef, string countName);
}
}