10 lines
237 B
C#
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);
|
|
}
|
|
}
|