b0996833bc
- Add HrynCo.NotificationService.Contracts project with SendEmailMessage and NotificationResultMessage - Add SendEmailConsumer (RabbitMQ worker) with reply-to pattern via CorrelationContext.ReplyTo - Add SendEmailHandler owning SMTP send + usage increment as business logic - Add GetChannelUsageSummaryHandler with single DB query via navigation property - Merge usage stats inline into channels list (daily/monthly with progress bars) - Refactor AdminChannelsController.Index to use GetChannelUsageSummaryQuery - Add RabbitMQ service to docker-compose files - Remove dead AdminChannelUsageController, ChannelUsageViewModel, ChannelUsageSummary Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
544 B
C#
20 lines
544 B
C#
using HrynCo.NotificationService.DAL.Abstract.Providers;
|
|
using HrynCo.NotificationService.Services.Core;
|
|
using MediatR;
|
|
|
|
namespace HrynCo.NotificationService.Services.EmailChannels.GetUsageSummary;
|
|
|
|
public sealed record GetChannelUsageSummaryQuery
|
|
: IRequest<ServiceResult<IReadOnlyList<ChannelUsageEntry>>>;
|
|
|
|
public sealed record ChannelUsageEntry(
|
|
Guid ChannelId,
|
|
string ServiceName,
|
|
string ChannelType,
|
|
bool IsActive,
|
|
int Priority,
|
|
int? DailyLimit,
|
|
int? MonthlyLimit,
|
|
int DailySent,
|
|
int MonthlySent);
|