コード例 #1
0
 public CusController(
     ICustomersService customer,
     IProductsService product,
     IOrdersService order,
     IShippersService shipper,
     IEmployeesService employee)
 {
     _customer = customer;
     _product  = product;
     _order    = order;
     _shipper  = shipper;
     _employee = employee;
 }
コード例 #2
0
 public CompareController(IShippersService shipperService, IOrdersService orderService, IConfiguration iconfiguration)
 {
     _shipperService = shipperService;
     _orderService   = orderService;
     _iconfiguration = iconfiguration;
 }
コード例 #3
0
 public ShipperController(IShippersService shipperService, IConfiguration iconfiguration)
 {
     _shipperService = shipperService;
     _iconfiguration = iconfiguration;
 }
コード例 #4
0
 public ShippersController(IShippersService <Shippers> service, IMapper mapper)
 {
     this.service = service;
     this.Mapper  = mapper;
 }