Пример #1
0
 public DeliveryAreaAddressController(
     IDeliveryAreaAddressService deliveryAreaAddressService,
     INomenclatureService _nomService,
     ICommonService _commonService,
     ILogger <DeliveryAreaAddressController> _logger)
 {
     service       = deliveryAreaAddressService;
     nomService    = _nomService;
     commonService = _commonService;
     logger        = _logger;
 }
Пример #2
0
 public DeliveryAreaController(
     IDeliveryAreaService deliveryAreaService,
     ICommonService _commonService,
     ICourtLawUnitService _courtLawUnitService,
     IDeliveryAreaAddressService _areaAddressService
     )
 {
     service             = deliveryAreaService;
     commonService       = _commonService;
     courtLawUnitService = _courtLawUnitService;
     areaAddressService  = _areaAddressService;
 }
Пример #3
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;
 }