123456789101112131415161718192021222324 |
- using Hotline.CallCenter.Calls;
- using Hotline.Share.Notifications;
- using MediatR;
- namespace Hotline.Application.Handlers.CallCenter.FlowControl
- {
- public class QueueVisitorToGroupBusyNotificationHandler:INotificationHandler<QueueVisitorToGroupBusyNotification>
- {
- private readonly ICallRepository _callRepository;
- private readonly ICallDetailRepository _callDetailRepository;
- public QueueVisitorToGroupBusyNotificationHandler(ICallRepository callRepository, ICallDetailRepository callDetailRepository)
- {
- _callRepository = callRepository;
- _callDetailRepository = callDetailRepository;
- }
- public async Task Handle(QueueVisitorToGroupBusyNotification notification, CancellationToken cancellationToken)
- {
- //TODO
- }
- }
- }
|