Example #1
0
 public GoodsController(IGoodsAppService AppService,
                        ICommonAppService comService, IAbpSession abpSession,
                        IGoodsCategoryAppService catAppService, IBrandAppService brandAppService, IImageAppService imgAppService,
                        IChainStoreAppService storeAppService, ICommonAttributeAppService attrAppService, ICommonSpecAppService specAppService)
 {
     _AppService      = AppService;
     _AbpSession      = abpSession;
     _comService      = comService;
     _catAppService   = catAppService;
     _brandAppService = brandAppService;
     _storeAppService = storeAppService;
     _imgAppService   = imgAppService;
     _attrAppService  = attrAppService;
     _specAppService  = specAppService;
 }
 public GoodsSpecController(ICommonSpecAppService AppService, ISpecValueAppService valueAppService, IGoodsCategoryAppService catAppService)
 {
     _AppService      = AppService;
     _valueAppService = valueAppService;
     _catAppService   = catAppService;
 }