예제 #1
0
 public CourtLawUnitController(ICourtLawUnitService _service, INomenclatureService _nomService,
                               ICourtGroupService _courtGroupService, ICourtOrganizationService _courtOrganizationService,
                               ICommonService _commonService)
 {
     service                  = _service;
     nomService               = _nomService;
     commonService            = _commonService;
     courtGroupService        = _courtGroupService;
     courtOrganizationService = _courtOrganizationService;
 }
예제 #2
0
 public DeliveryAreaController(
     IDeliveryAreaService deliveryAreaService,
     ICommonService _commonService,
     ICourtLawUnitService _courtLawUnitService,
     IDeliveryAreaAddressService _areaAddressService
     )
 {
     service             = deliveryAreaService;
     commonService       = _commonService;
     courtLawUnitService = _courtLawUnitService;
     areaAddressService  = _areaAddressService;
 }
예제 #3
0
 public CaseDeadlineController(
     ICaseDeadlineService _service,
     INomenclatureService _nomService,
     ICourtLawUnitService _courtLawUnitService,
     ICaseService _caseService,
     ICommonService _commonService)
 {
     service             = _service;
     nomService          = _nomService;
     courtLawUnitService = _courtLawUnitService;
     caseService         = _caseService;
     commonService       = _commonService;
 }
예제 #4
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;
 }