/// <summary> /// Справки /// </summary> /// <param name="_service"></param> /// <param name="_nomService"></param> /// <param name="_departmentService"></param> /// <param name="_commonService"></param> /// <param name="_excelReportService"></param> public ReportController(IReportService _service, INomenclatureService _nomService, ICourtDepartmentService _departmentService, ICommonService _commonService, IExcelReportService _excelReportService) { service = _service; nomService = _nomService; departmentService = _departmentService; commonService = _commonService; excelReportService = _excelReportService; }
public ReportViewerController(IReportViewerService _service, INomenclatureService _nomService, ICourtDepartmentService _departmentService, ICommonService _commonService, IConfiguration _configuration) { service = _service; nomService = _nomService; departmentService = _departmentService; commonService = _commonService; configuration = _configuration; }
public CaseController( ICaseService _service, INomenclatureService _nomService, ICommonService _commonService, ICaseClassificationService _classficationService, ICaseSelectionProtokolService _caseSelectProtokolService, ICourtDepartmentService _courtDepartmentService) { service = _service; nomService = _nomService; commonService = _commonService; classficationService = _classficationService; caseSelectProtokolService = _caseSelectProtokolService; courtDepartmentService = _courtDepartmentService; }
public CaseSelectionProtokolController( ICaseSelectionProtokolService _service, INomenclatureService _nomService, ICourtDutyService _courtDutyService, ICourtGroupService _courtGroupService, ICourtDepartmentService _courtDepartmentservice, ICourtLoadPeriodService _courtLoadPeriodService, ICdnService _cdnService, ICommonService _commonService) { service = _service; nomService = _nomService; courtDutyService = _courtDutyService; courtGroupService = _courtGroupService; courtDepartmentservice = _courtDepartmentservice; courtLoadPeriodService = _courtLoadPeriodService; cdnService = _cdnService; commonService = _commonService; }
public CaseSessionController(ICaseSessionService _service, INomenclatureService _nomService, ICommonService _commonService, ICaseClassificationService _classficationService, ICaseLawUnitService _lawUnitService, ICourtDepartmentService _courtDepartmentService, ICaseSessionMeetingService _caseSessionMeetingService, ICaseNotificationService _caseNotificationService, ICaseSessionActService _caseSessionActService) { service = _service; nomService = _nomService; commonService = _commonService; classficationService = _classficationService; lawUnitService = _lawUnitService; courtDepartmentService = _courtDepartmentService; caseSessionMeetingService = _caseSessionMeetingService; caseNotificationService = _caseNotificationService; caseSessionActService = _caseSessionActService; }
public CourtDepartmentController(ICourtDepartmentService _service, INomenclatureService _nomService) { service = _service; nomService = _nomService; }