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;
 }
Beispiel #2
0
 public DeliveryItemController(
     IDeliveryItemService _deliveryItemService,
     ICommonService _commonService,
     ICompositeViewEngine _viewEngine,
     INomenclatureService _nomService,
     IDeliveryAreaService _areaService,
     IDeliveryAreaAddressService _deliveryAreaAddressService,
     ICourtLawUnitService _courtLawUnitService,
     ICaseNotificationService _notificationService,
     ICdnService _cdnService
     )
 {
     service       = _deliveryItemService;
     commonService = _commonService;
     viewEngine    = _viewEngine;
     nomService    = _nomService;
     areaService   = _areaService;
     deliveryAreaAddressService = _deliveryAreaAddressService;
     courtLawUnitService        = _courtLawUnitService;
     notificationService        = _notificationService;
     cdnService = _cdnService;
 }