Example #1
0
 public CommonController(IDiagnosticService diagnosticService, IFranchiseeTenantService franchiseeTenantService, IPackageHistoryService packageHistoryService)
     : base(diagnosticService, null)
 {
     _diagnosticService       = diagnosticService;
     _franchiseeTenantService = franchiseeTenantService;
     _packageHistoryService   = packageHistoryService;
 }
Example #2
0
 public RequestController(IDiagnosticService diagnosticService, IFranchiseeTenantService franchiseeTenantService, IRequestService requestService)
     : base(diagnosticService, null)
 {
     _diagnosticService       = diagnosticService;
     _franchiseeTenantService = franchiseeTenantService;
     _requestService          = requestService;
 }
Example #3
0
 public FranchiseeConfigurationService(ITenantPersistenceService tenantPersistenceService,
                                       IFranchiseeConfigurationRepository franchiseeConfigurationRepository, IFranchiseeTenantRepository franchiseeTenantRepository, IFranchiseeTenantService franchiseeTenantService,
                                       IBusinessRuleSet <FranchiseeConfiguration> businessRuleSet = null)
     : base(franchiseeConfigurationRepository, franchiseeConfigurationRepository, tenantPersistenceService, businessRuleSet)
 {
     _franchiseeConfigurationRepository = franchiseeConfigurationRepository;
     _franchiseeTenantRepository        = franchiseeTenantRepository;
     _franchiseeTenantService           = franchiseeTenantService;
 }
Example #4
0
 public FranchiseeModuleController(IAuthenticationService authenticationService, IDiagnosticService diagnosticService, IGridConfigService gridConfigService,
                                   IFranchiseeModuleService franchiseeModuleService,
                                   IFranchiseeTenantService franchiseeTenantService,
                                   IModuleService moduleService)
     : base(authenticationService, diagnosticService, franchiseeModuleService)
 {
     _franchiseeModuleService = franchiseeModuleService;
     _franchiseeTenantService = franchiseeTenantService;
     _moduleService           = moduleService;
     _gridConfigService       = gridConfigService;
 }
Example #5
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;
 }
Example #6
0
 public AuthenticationController(IAuthenticationService authenticationService,
                                 IDiagnosticService diagnosticService, IUserService userService, ICourierService courierService,
                                 IWebApiConsumeUserService webApiUserService, IFranchiseeConfigurationService franchiseeConfigurationService, IFranchiseeTenantService franchiseeTenantService)
     : base(authenticationService, diagnosticService, null)
 {
     _authenticationService          = authenticationService;
     _diagnosticService              = diagnosticService;
     _userService                    = userService;
     _webApiUserService              = webApiUserService;
     _courierService                 = courierService;
     _franchiseeConfigurationService = franchiseeConfigurationService;
     _franchiseeTenantService        = franchiseeTenantService;
     _emailHandler                   = new EmailHandler();
 }
Example #7
0
 public FranchiseeConfigurationController(IAuthenticationService authenticationService, IDiagnosticService diagnosticService,
                                          IResizeImage resizeImage, IGridConfigService gridConfigService, IFranchiseeConfigurationService franchiseeConfigurationService,
                                          IFranchiseeTenantService franchiseeTenantService, IUserService userService, IWebApiPaymentService webApiPaymentService,
                                          IWebApiConsumeUserService webApiUserService, IEmailHandler emailHandler, IContactService contactService, ILocationService locationService,
                                          ISystemConfigurationService systemConfigurationService)
     : base(authenticationService, diagnosticService, franchiseeConfigurationService)
 {
     _resizeImage = resizeImage;
     _franchiseeConfigurationService = franchiseeConfigurationService;
     _gridConfigService          = gridConfigService;
     _webApiUserService          = webApiUserService;
     _diagnosticService          = diagnosticService;
     _userService                = userService;
     _webApiPaymentService       = webApiPaymentService;
     _emailHandler               = emailHandler;
     _contactService             = contactService;
     _locationService            = locationService;
     _systemConfigurationService = systemConfigurationService;
 }
Example #8
0
 public RequestRule(IRequestRepository requestRepository, IFranchiseeTenantService franchiseeTenantService)
 {
     _requestRepository       = requestRepository;
     _franchiseeTenantService = franchiseeTenantService;
 }