public Task Handle(UpdateBudget.Notification notification, CancellationToken cancellationToken)
 {
     return(_budgetsNotifier.Send(eBudgetHubEvent.BudgetUpdated, notification));
 }
 public Task Handle(CreateBudgetCategory.Notification notification, CancellationToken cancellationToken)
 {
     return(_budgetsNotifier.Send(eBudgetHubEvent.BudgetCategoryAdded, notification));
 }
 public Task Handle(SaveBudgetCategoryOrder.Notification notification, CancellationToken cancellationToken)
 {
     return(_budgetsNotifier.Send(eBudgetHubEvent.BudgetCategoryReordered, notification));
 }