Exemple #1
0
 public SettingController(IHelperService helperService, ITimerScheduleService timerScheduleService, IAccountApplianceService accountApplianceService, IApplianceService applianceService, IStateService stateService, IOptions <AppSetting> appSettings) : base(appSettings.Value)
 {
     this._helperService           = helperService;
     this._applianceService        = applianceService;
     this._stateService            = stateService;
     this._accountApplianceService = accountApplianceService;
     this._timerScheduleService    = timerScheduleService;
 }
Exemple #2
0
 public HomeController(IStripeService stripeService, IAccountService accountService, ITimerScheduleService timerScheduleService, IApplianceService applianceService, IEventService eventService, IAccountApplianceService accountApplianceService, IOptions <AppSetting> appSettings) : base(appSettings.Value)
 {
     this._accountApplianceService = accountApplianceService;
     this._eventService            = eventService;
     this._applianceService        = applianceService;
     this._timerScheduleService    = timerScheduleService;
     this._accountService          = accountService;
     this._stripeService           = stripeService;
 }
 public TelitGatewayController(IStateService stateService, ITimerScheduleService timerScheduleService, IAccountApplianceService accountApplianceService, INotificationPreferenceService notificationPreferenceService, INotificationService notificationService, IEventService eventService, IApplianceService applianceService, IOptions <AppSetting> appSettings) : base(appSettings.Value)
 {
     this._stateService                  = stateService;
     this._accountApplianceService       = accountApplianceService;
     this._applianceService              = applianceService;
     this._eventService                  = eventService;
     this._notificationService           = notificationService;
     this._notificationPreferenceService = notificationPreferenceService;
     this._timerScheduleService          = timerScheduleService;
 }