Example #1
0
 public OderController(IAreaInfoService areaInfoService, IOrderIdInfoService orderIdInfoService, IShopInfoService shopInfoService, IGoodsService goodsService, IOrderInfoService orderInfoService)
 {
     this.areaInfoService    = areaInfoService;
     this.orderIdInfoService = orderIdInfoService;
     this.shopInfoService    = shopInfoService;
     this.goodsService       = goodsService;
     this.orderInfoService   = orderInfoService;
 }
Example #2
0
 public OrderServices(IOrdersRepository r, IUserService userService, IDayInfoService dayinfo, IOrdersTemplateService oTPs, IOrderInfoService oIS)
 {
     _userService         = userService;
     _orderRepository     = r;
     _dayInfoService      = dayinfo;
     orderTemplateService = oTPs;
     _orderInfoService    = oIS;
 }
Example #3
0
 public OrderInfoController(IOrderInfoService orderInfoService)
 {
     _orderInfoService = orderInfoService;
 }
Example #4
0
 public OrderInfoController(IOrderInfoService serv, IUserService userService)
 {
     _orderInfoService = serv;
     _userService      = userService;
 }
Example #5
0
 public OrderInfoManager(IOrderInfoService service)
 {
     _service = service;
 }
Example #6
0
 public InjectionPoint(IOrderInfoService orderInfoService, ICompanyInfoService companyInfoService, INpoiService npoiService)
 {
     _orderInfoService   = orderInfoService;
     _companyInfoService = companyInfoService;
     _npoiService        = npoiService;
 }