Пример #1
0
 public CategoryController(IGoodsCategoryAppService AppService,
                           IBrandAppService brandAppService,
                           IAbpSession abpSession)
 {
     _AppService      = AppService;
     _brandAppService = brandAppService;
     _AbpSession      = abpSession;
 }
Пример #2
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 BrandsController(IUnitOfWork <Context> uow, IBrandAppService brandAppService)
 {
     _uow             = uow;
     _brandAppService = brandAppService;
 }
Пример #4
0
 public ItemApiController(IBrandAppService brandAppService, IItemAppService itemAppService)
 {
     _brandAppService = brandAppService;
     _itemAppService  = itemAppService;
 }
 public BrandAppService_Tests()
 {
     _brandAppService = LocalIocManager.Resolve <IBrandAppService>();
 }
Пример #6
0
 public BrandController(IBrandAppService AppService, IAbpSession abpSession)
 {
     _AppService = AppService;
     _AbpSession = abpSession;
 }
Пример #7
0
 public BrandController(IBrandAppService brandAppService)
 {
     _brandAppService = brandAppService;
 }
Пример #8
0
 public HomeController(IBrandAppService AppService)
 {
     _AppService = AppService;
 }