12 lines
279 B
C#
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);
|
|
}
|
|
}
|