예제 #1
0
		public SettingsController(IClientCompanyAppraiserSettingsService clientCompanyAppraiserSettingsService, IControllerPluginFactory controllerPluginFactory, IClientCompaniesListService clientCompaniesListService, IBranchesService branchesService)
			: base(controllerPluginFactory)
		{
			_clientCompanyAppraiserSettingsService = ValidationUtil.CheckOnNullAndThrowIfNull(clientCompanyAppraiserSettingsService);
			_clientCompaniesService = ValidationUtil.CheckOnNullAndThrowIfNull(clientCompaniesListService);
			_branchesService = branchesService;
		}
예제 #2
0
		public CommonFunctionsController(IAppraiserUserService appraiserService, IBranchesService clientBranchService,
				IReferenceManagement refManager, IAppraisalCompanyService companyService, IClientCompaniesListService clientCompanyService, IClientCompanyProfileService clientCompanyProfileService)
		{
			_appraiserService = appraiserService;
			_clientBranchService = clientBranchService;
			_refManager = refManager;
			_companyService = companyService;
			_clientCompanyService = clientCompanyService;
			_clientCompanyProfileService = clientCompanyProfileService;
		}
예제 #3
0
		public OrderCreationWizardController(
			IOrderService orderService,
			IAppraisalFormsService appraisalFormsService,
			IClientCompaniesListService clientCompaniesListService,
			ICreditCardService creditCardService,
			IDocumentService documentService,
			ITaskManager taskManager,
			IOrderHistoryManager orderHistoryManager,
			IReferenceManagement referenceManager)
		{
			_orderService = orderService;
			_appraisalFormsService = appraisalFormsService;
			_clientCompaniesService = clientCompaniesListService;
			_creditCardService = creditCardService;
			_documentService = documentService;
			_taskManager = taskManager;
			_orderHistoryManager = orderHistoryManager;
			_referenceManager = referenceManager;
		}
예제 #4
0
		public UserAccessControllerPlugin(ISecurityContext securityContext, IClientCompaniesListService clientCompanyListService)
		{
			_securityContext = securityContext;
			_clientCompanyListService = clientCompanyListService;
		}
예제 #5
0
		public ClientCompaniesListController(IClientCompaniesListService clientCompaniesListService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_clientCompaniesListService = ValidationUtil.CheckOnNullAndThrowIfNull(clientCompaniesListService);
		}