Пример #1
0
 public DishesController(IDishService service, IDishCategoryService categoryService, IDeliveryAreaService areaService, IScheduleService scheduleService)
 {
     _service         = service;
     _categoryService = categoryService;
     _areaService     = areaService;
     _scheduleService = scheduleService;
 }
Пример #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;
 }
Пример #4
0
 public HomeController(IDeliveryAreaService areaService, IScheduleService scheduleService)
 {
     _areaService     = areaService;
     _scheduleService = scheduleService;
 }
Пример #5
0
 public DeliveryAreasController(IDeliveryAreaService service, IScheduleService scheduleService)
 {
     _service         = service;
     _scheduleService = scheduleService;
 }