Ejemplo n.º 1
0
 public AgencyAccountsController(IAdministratorContext administratorContext, IAgencyAccountService agencyAccountService,
                                 IBalanceNotificationsManagementService balanceNotificationsManagementService)
 {
     _administratorContext = administratorContext;
     _agencyAccountService = agencyAccountService;
     _balanceNotificationsManagementService = balanceNotificationsManagementService;
 }
 // Do not build any functionality based on this service, because it is probably going to be deleted soon
 public BalanceManagementNotificationsService(INotificationService notificationService,
                                              IOptions <BalanceManagementNotificationsOptions> balanceManagementNotificationsOptions,
                                              IBalanceNotificationsManagementService balanceNotificationsManagementService,
                                              IAdminAgencyManagementService adminAgencyManagementService)
 {
     _notificationService = notificationService;
     _options             = balanceManagementNotificationsOptions.Value;
     _balanceNotificationsManagementService = balanceNotificationsManagementService;
     _adminAgencyManagementService          = adminAgencyManagementService;
 }