コード例 #1
0
ファイル: SettingController.cs プロジェクト: tienvv1234/test
 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;
 }
コード例 #2
0
ファイル: UserController.cs プロジェクト: tienvv1234/test
 public UserController(IApplianceService applianceService, INotificationService notificationService, IEventService eventService, IOptions <AppSetting> appSettings, IAccountApplianceService accountApplianceService, IAccountService accountService) : base(appSettings.Value)
 {
     this._accountApplianceService = accountApplianceService;
     this._accountService          = accountService;
     this._eventService            = eventService;
     this._notificationService     = notificationService;
     this._applianceService        = applianceService;
 }
コード例 #3
0
 public LoginController(IAccountApplianceService accountApplianceceService, IAccountService accountService, IAccountTokenService accountTokenService, IEventService eventService, IHelperService helperService, IPasswordHistoryService passwordHistoryService, IOptions <AppSetting> appSettings) : base(appSettings.Value)
 {
     this._accountService            = accountService;
     this._accountTokenService       = accountTokenService;
     this._eventService              = eventService;
     this._helperService             = helperService;
     this._passwordHistoryService    = passwordHistoryService;
     this._accountApplianceceService = accountApplianceceService;
 }
コード例 #4
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;
 }
コード例 #5
0
 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;
 }
コード例 #6
0
 public StripeCallBackController(IAccountService accountService, IApplianceService applianceService, IAccountApplianceService accountApplianceService, IOptions <AppSetting> appSettings) : base(appSettings.Value)
 {
     this._accountApplianceService = accountApplianceService;
     this._applianceService        = applianceService;
     this._accountService          = accountService;
 }