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