Ejemplo n.º 1
0
 public FundStorageController(
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.service         = fundService;
     this.serviceSelect   = fundServiceSelect;
     this.sharedLocalizer = sharedLocalizer;
 }
Ejemplo n.º 2
0
 public FundStorageController(
     IHubNotificationHelper notificationHelper,
     IRecentService recentService,
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.notificationHelper = notificationHelper;
     this.recentService      = recentService;
     this.service            = fundService;
     this.serviceSelect      = fundServiceSelect;
     this.sharedLocalizer    = sharedLocalizer;
 }
 public FundStorageController(
     IHubContext <NotificationHub> hubContext,
     INotificationService notificationService,
     IRecentService recentService,
     IFundStorageService fundService,
     IFundSelectListService fundServiceSelect,
     SharedLocalizationService sharedLocalizer)
 {
     this.hubContext          = hubContext;
     this.notificationService = notificationService;
     this.recentService       = recentService;
     this.service             = fundService;
     this.serviceSelect       = fundServiceSelect;
     this.sharedLocalizer     = sharedLocalizer;
 }