namespace HrynCo.NotificationService.DAL.Abstract.Repositories; public interface IEmailChannelUsageRepository { Task GetDailyCountAsync(Guid providerId, DateOnly date, CancellationToken ct = default); Task GetMonthlyCountAsync(Guid providerId, int year, int month, CancellationToken ct = default); Task IncrementUsageAsync(Guid providerId, DateOnly date, CancellationToken ct = default); }