public DeliverersController(ICommonRepository <Deliverer> delivererRepository, IDelivererService delivererService,
                             ILocationService locationService)
 {
     _delivererRepository = delivererRepository;
     _delivererService    = delivererService;
     _locationService     = locationService;
 }
Example #2
0
 public FactoryController(IEmployeesService employeesService, IMachinesService machinesService, IRequestService requestService,
                          IDelivererService delivererService)
 {
     this.employeesService = employeesService;
     this.machinesService  = machinesService;
     this.requestService   = requestService;
     this.delivererService = delivererService;
 }
Example #3
0
 public ConnectionHub(IDelivererService delivererService, ICommonRepository <Location> locationRepository,
                      ILocationService LocationService, IOrderService orderService, ISellerService sellerService)
 {
     _delivererService   = delivererService;
     _locationRepository = locationRepository;
     _LocationService    = LocationService;
     _orderService       = orderService;
     _sellerService      = sellerService;
 }
Example #4
0
        /// <summary>
        /// コンストラクタ
        /// </summary>
        /// <param name="service">ICleanDbServiceのインスタンス</param>
        public DelivererController(IDelivererService service)
        {
            Assert.IfNull(service);

            _service = service;
        }
 public DelivererController(IDelivererService delivererService, LinkGenerator linkGenerator)
 {
     this.delivererService = delivererService;
     this.linkGenerator    = linkGenerator;
 }
 public DeliverersController(IDelivererService service)
 {
     this.service = service;
 }
 public DelivererController(IDelivererService delivererService)
 {
     this.delivererService = delivererService;
 }