Files
lux/EgwCoreLib.Lux.Data/Repository/Utils/ICounterRepository.cs
T
2026-03-18 18:26:38 +01:00

12 lines
279 B
C#

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