示例#1
0
 public AccountController(IUserService user, IConfiguration configuration, IEmailSender email, IRenderViewToString viewToString)
 {
     userService        = user;
     _config            = configuration;
     emailSender        = email;
     renderViewToString = viewToString;
 }
示例#2
0
 public UserRoleController(IAuthenticationService authenticationService, IDiagnosticService diagnosticService,
                           IUserRoleService userRoleService, IGridConfigService gridConfigService, IRenderViewToString renderViewToString)
     : base(authenticationService, diagnosticService, userRoleService)
 {
     _userRoleService    = userRoleService;
     _gridConfigService  = gridConfigService;
     _renderViewToString = renderViewToString;
 }
示例#3
0
 public ModuleController(IAuthenticationService authenticationService, IDiagnosticService diagnosticService, IGridConfigService gridConfigService,
                         IRenderViewToString renderViewToString, IModuleService moduleService)
     : base(authenticationService, diagnosticService, moduleService)
 {
     _moduleService      = moduleService;
     _gridConfigService  = gridConfigService;
     _renderViewToString = renderViewToString;
 }
示例#4
0
 public FranchiseeTenantController(IAuthenticationService authenticationService, IDiagnosticService diagnosticService,
                                   IGridConfigService gridConfigService, IFranchiseeConfigurationService franchiseeConfigurationService,
                                   IRenderViewToString renderViewToString,
                                   IResizeImage resizeImage, IFranchiseeTenantService franchiseeTenantService)
     : base(authenticationService, diagnosticService, franchiseeTenantService)
 {
     _franchiseeTenantService        = franchiseeTenantService;
     _gridConfigService              = gridConfigService;
     _franchiseeConfigurationService = franchiseeConfigurationService;
     _resizeImage        = resizeImage;
     _renderViewToString = renderViewToString;
 }
示例#5
0
 public LocationController(IAuthenticationService authenticationService,
                           IDiagnosticService diagnosticService,
                           ILocationService locationService,
                           IRenderViewToString renderViewToString,
                           ICountryOrRegionService countryOrRegionService,
                           IGridConfigService gridConfigService)
     : base(authenticationService, diagnosticService, locationService)
 {
     _gridConfigService      = gridConfigService;
     _locationService        = locationService;
     _renderViewToString     = renderViewToString;
     _countryOrRegionService = countryOrRegionService;
 }
示例#6
0
 public UserController(IAuthenticationService authenticationService, IRenderViewToString renderViewToString, IDiagnosticService diagnosticService,
                       IResizeImage resizeImage, IGridConfigService gridConfigService, IUserService userService,
                       IFranchiseeConfigurationService franchiseeConfigurationService, IWebApiConsumeUserService webApiConsumeUserService)
     : base(authenticationService, diagnosticService, userService)
 {
     _userService                    = userService;
     _gridConfigService              = gridConfigService;
     _renderViewToString             = renderViewToString;
     _franchiseeConfigurationService = franchiseeConfigurationService;
     _emailHandler                   = new EmailHandler();
     _resizeImage                    = resizeImage;
     _webApiConsumeUserService       = webApiConsumeUserService;
 }
示例#7
0
 public RequestController(IAuthenticationService authenticationService, IGridConfigService gridConfigService,
                          IRequestService requestService, IStaticValueService staticValueService, IRenderViewToString renderViewToString, INoteRequestService noteRequestService,
                          ISystemEventService systemEventService, ILocationService locationService, IGoogleService googleService, IUserService userService,
                          IHoldingRequestService holdingRequestService, ISystemConfigurationService systemConfigurationService, IDiagnosticService diagnosticService)
     : base(authenticationService, diagnosticService, requestService)
 {
     _requestService             = requestService;
     _staticValueService         = staticValueService;
     _gridConfigService          = gridConfigService;
     _renderViewToString         = renderViewToString;
     _noteRequestService         = noteRequestService;
     _systemEventService         = systemEventService;
     _locationService            = locationService;
     _googleService              = googleService;
     _systemConfigurationService = systemConfigurationService;
     _holdingRequestService      = holdingRequestService;
     _userService       = userService;
     _diagnosticService = diagnosticService;
 }