コード例 #1
0
ファイル: AppController.cs プロジェクト: anh120991/usexpress
 public AppController(IStoreServices iStoreServices, IOrderService iOrderServices, IUserService iUserServices, IAppService iAppServices, IKerryService iKerryServices)
 {
     this._iStoreServices = iStoreServices;
     _iOrderServices      = iOrderServices;
     _iUserServices       = iUserServices;
     _iAppServices        = iAppServices;
     _iKerryServices      = iKerryServices;
 }
コード例 #2
0
 public OrderController(ICategoryService categoryService,
                        ILocationServices locationService,
                        IOrderService orderSerivce,
                        IStoreServices storeService,
                        IUserService userService,
                        IKerryService kerryService,
                        IProductServices productServices) : base(storeService, userService)
 {
     _categoryService = categoryService;
     _locationService = locationService;
     _orderService    = orderSerivce;
     _iKerryService   = kerryService;
     _productServices = productServices;
 }
コード例 #3
0
 public OrderController(IKerryService iKerryServices, IOrderService orderSerivce, IStoreServices storeService)
 {
     _iKerryServices = iKerryServices;
     _orderService   = orderSerivce;
     _storeService   = storeService;
 }