Exemplo n.º 1
0
 /// <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;
 }
Exemplo n.º 2
0
 public ReportViewerController(IReportViewerService _service, INomenclatureService _nomService,
                               ICourtDepartmentService _departmentService,
                               ICommonService _commonService,
                               IConfiguration _configuration)
 {
     service           = _service;
     nomService        = _nomService;
     departmentService = _departmentService;
     commonService     = _commonService;
     configuration     = _configuration;
 }
Exemplo n.º 3
0
 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;
 }
Exemplo n.º 4
0
 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;
 }
Exemplo n.º 6
0
 public CourtDepartmentController(ICourtDepartmentService _service, INomenclatureService _nomService)
 {
     service    = _service;
     nomService = _nomService;
 }