Beispiel #1
0
 public GoodsAppService(ISqlExecuter sqlExecuter,
                        IRepository <Entity.Goods, long> Repository,
                        IAbpSession AbpSession, IImageAppService imgService, ISpecObjectAppService specObjService)
 {
     _sqlExecuter    = sqlExecuter;
     _Repository     = Repository;
     _AbpSession     = AbpSession;
     _imgService     = imgService;
     _specObjService = specObjService;
 }
 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;
 }
 public GoodsOrderAppService(ISqlExecuter sqlExecuter, IImageAppService imgService,
                             ICommonAppService comService, ISpecObjectAppService objService, ISessionAppService sessionAppService,
                             IRepository <Entity.GoodsOrder, long> Repository, IAbpSession AbpSession)
 {
     _sqlExecuter           = sqlExecuter;
     _Repository            = Repository;
     _AbpSession            = AbpSession;
     _imgService            = imgService;
     _comService            = comService;
     _objService            = objService;
     _sessionAppService     = sessionAppService;
     LocalizationSourceName = UnionMallConsts.LocalizationSourceName;
 }