Exemple #1
0
 public CategoryController(IGoodsCategoryAppService AppService,
                           IBrandAppService brandAppService,
                           IAbpSession abpSession)
 {
     _AppService      = AppService;
     _brandAppService = brandAppService;
     _AbpSession      = abpSession;
 }
 public BrandAppService(ISqlExecuter sqlExecuter,
                        IRepository <Brand, long> Repository, IAbpSession AbpSession, IGoodsCategoryAppService catService)
 {
     _sqlExecuter = sqlExecuter;
     _Repository  = Repository;
     _AbpSession  = AbpSession;
     _catService  = catService;
 }
 public GoodsConsumeController(IGoodsCategoryAppService catAppService,
                               IGoodsAppService AppService, ICommonAppService comService, IReceiveStatisticsAppService copAppService,
                               ISpecObjectAppService specAppService, IMemberAppService memAppService, IParameterAppService parService)
 {
     _catAppService  = catAppService;
     _AppService     = AppService;
     _comService     = comService;
     _specAppService = specAppService;
     _copAppService  = copAppService;
     _memAppService  = memAppService;
     _parService     = parService;
 }
Exemple #4
0
        public CommonSpecAppService(IRepository <Entity.CommonSpec, Guid> Repository, IAbpSession AbpSession,
                                    ISqlExecuter sqlExecuter, IRepository <Entity.CommonSpecValue, Guid> valueRepository,
                                    IRepository <Entity.CommonSpecObject, long> objectRepository, IGoodsCategoryAppService goodsCateAppServices)

        {
            _Repository            = Repository;
            _AbpSession            = AbpSession;
            _sqlExecuter           = sqlExecuter;
            _valueRepository       = valueRepository;
            _objectRepository      = objectRepository;
            _goodsCateAppServices  = goodsCateAppServices;
            LocalizationSourceName = UnionMallConsts.LocalizationSourceName;
        }
 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;
 }
Exemple #6
0
 public GoodsCategoryController(IGoodsCategoryAppService goodsCategoryAppService)
 {
     _goodsCategoryAppService = goodsCategoryAppService;
 }
 public GoodsSpecController(ICommonSpecAppService AppService, ISpecValueAppService valueAppService, IGoodsCategoryAppService catAppService)
 {
     _AppService      = AppService;
     _valueAppService = valueAppService;
     _catAppService   = catAppService;
 }
 public GoodsAttrController(ICommonAttributeAppService AppService,
                            IGoodsCategoryAppService catAppService)
 {
     _AppService    = AppService;
     _catAppService = catAppService;
 }