Exemplo n.º 1
0
 public GiftController(ICommonCategoryAppService catAppService,
                       IGiftAppService AppService, ICommonAppService comService)
 {
     _catAppService = catAppService;
     _AppService    = AppService;
     _comService    = comService;
 }
Exemplo n.º 2
0
 public FlashSaleOrderController(ICommonCategoryAppService catAppService,
                                 ICommonAppService comService, IFlashSaleOrderAppService AppService,
                                 IFlashSaleOrderItemAppService itemAppService,
                                 IImageAppService imgAppService)
 {
     _catAppService  = catAppService;
     _comService     = comService;
     _AppService     = AppService;
     _itemAppService = itemAppService;
     _imgAppService  = imgAppService;
 }
Exemplo n.º 3
0
 public CategoryController(ICommonCategoryAppService AppService, ICommonAppService comService)
 {
     _AppService = AppService;
     _comService = comService;
 }
Exemplo n.º 4
0
 public ArticleController(ICommonCategoryAppService catAppService, IArticleAppService AppService, ICommonAppService comService)
 {
     _catAppService = catAppService;
     _AppService    = AppService;
     _comService    = comService;
 }