Пример #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 AdminController(
			IControllerPluginFactory controllerPluginFactory, 
			IClientCompanyAdminSettingsService clientCompanyAdminSettingsService,
			ISecurityContext securityContext, 
			IClientCompanyManagement clientCompanyManagement,
			IClientCompanyAdminNotesService clientCompanyAdminNotesService)
			: base(controllerPluginFactory)
		{
			_clientCompanyAdminSettingsService = clientCompanyAdminSettingsService;
			_securityContext = ValidationUtil.CheckOnNullAndThrowIfNull(securityContext);
			_clientCompanyManagement = clientCompanyManagement;
			_clientCompanyAdminNotesService = clientCompanyAdminNotesService;
		}
Пример #3
0
		public HotListController(IHotListService hotListService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_hotListService = ValidationUtil.CheckOnNullAndThrowIfNull(hotListService);
		}
Пример #4
0
		public CompanyProfileController(IClientCompanyProfileService companyProfileService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_companyProfileService = ValidationUtil.CheckOnNullAndThrowIfNull(companyProfileService);
		}
Пример #5
0
		public AssignmentHistoryController(IAssignmentHistoryService assignmentHistoryService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_assignmentHistoryService = ValidationUtil.CheckOnNullAndThrowIfNull(assignmentHistoryService);
		}
Пример #6
0
		public ClientCompaniesListController(IClientCompaniesListService clientCompaniesListService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_clientCompaniesListService = ValidationUtil.CheckOnNullAndThrowIfNull(clientCompaniesListService);
		}
Пример #7
0
		public DisbursementHistoryController(IDisbursementHistoryService disbursementHistoryService, IControllerPluginFactory controllerPluginFactory)
			:base(controllerPluginFactory)
		{
			_disbursementHistoryService = disbursementHistoryService;
		}
Пример #8
0
		protected PluginController(IControllerPluginFactory controllerPluginFactory)
		{
			_controllerPluginFactory = controllerPluginFactory;
		}
Пример #9
0
		public ListController(IActiveAssignmentsService activeAssignmentsService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_activeAssignmentsService = ValidationUtil.CheckOnNullAndThrowIfNull(activeAssignmentsService);
		}
Пример #10
0
		public StatusPointsController(IStatusPointsService statusPointsService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_statusPointsService = statusPointsService;
		}
Пример #11
0
 public BranchesController(IBranchesService branchesService, IControllerPluginFactory controllerPluginFactory)
   : base(controllerPluginFactory)
 {
   _branchesService = ValidationUtil.CheckOnNullAndThrowIfNull(branchesService);
 }
Пример #12
0
		public NewRequestsController(INewRequestService newRequestService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_newRequestService = ValidationUtil.CheckOnNullAndThrowIfNull(newRequestService);
		}
Пример #13
0
		public ClientUserPipelineController(IClientUserPipelineService clientUserPipelineService, IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			_clientUserPipelineService = ValidationUtil.CheckOnNullAndThrowIfNull(clientUserPipelineService);
		}
Пример #14
0
		public ActiveOrdersController(IControllerPluginFactory controllerPluginFactory, IClientDashboardService dashboardService)
			: base(controllerPluginFactory)
		{
			_dashboardService = dashboardService;
		}
Пример #15
0
		public LetterOfEngagementController(IControllerPluginFactory controllerPluginFactory, IClientCompanyLetterService clientCompanyLetterService)
			: base(controllerPluginFactory)
		{
			_clientCompanyLetterService = ValidationUtil.CheckOnNullAndThrowIfNull(clientCompanyLetterService);
		}
Пример #16
0
		protected DashboardTabController(IControllerPluginFactory controllerPluginFactory)
			: base(controllerPluginFactory)
		{
			DashboardTabsService = new DefaultDashboardTabsService();
		}
Пример #17
0
		public PaymentHistoryController(IControllerPluginFactory controllerPluginFactory, IPaymentHistoryService paymentHistoryService)
			: base(controllerPluginFactory)
		{
			_paymentHistoryService = ValidationUtil.CheckOnNullAndThrowIfNull(paymentHistoryService);
		}