Esempio n. 1
0
 public RoleController(IRoleAppService roleAppService, ICommonAppService comService
                       , IBusinessAppService businessAppService)
 {
     _roleAppService     = roleAppService;
     _comService         = comService;
     _businessAppService = businessAppService;
 }
Esempio n. 2
0
 public BusinessController(ICommonAppService commonAppService, IAbpSession abpSession,
                           IBusinessAppService businessAppService)
 {
     _commonAppService   = commonAppService;
     _AbpSession         = abpSession;
     _businessAppService = businessAppService;
 }
 public ChainStoreSetController(IChainStoreAppService AppService, IAbpSession abpSession,
                                IBusinessAppService businessAppService, ICommonAppService commonAppService)
 {
     _commonAppService   = commonAppService;
     _AppService         = AppService;
     _AbpSession         = abpSession;
     _businessAppService = businessAppService;
 }
 public StoreMoneyDetailController(IChainStoreAppService AppService, ICapitalNoteAppService capService,
                                   IBusinessAppService businessAppService, ICommonAppService commonAppService)
 {
     _commonAppService   = commonAppService;
     _AppService         = AppService;
     _capService         = capService;
     _businessAppService = businessAppService;
 }
Esempio n. 5
0
 public GoodsController(IBusinessAppService businessAppService,
                        IFlashSaleAppService AppService,
                        ICommonAppService comService, IImageAppService imgAppService)
 {
     _businessAppService = businessAppService;
     _AppService         = AppService;
     _comService         = comService;
     _imgAppService      = imgAppService;
 }
Esempio n. 6
0
 public MemberController(IMemberAppService AppService, IMemberLevelAppService levelAppService,
                         IBusinessAppService businessAppService, IChainStoreAppService storeAppService, ICommonAppService comAppService)
 {
     _AppService         = AppService;
     _levelAppService    = levelAppService;
     _businessAppService = businessAppService;
     _storeAppService    = storeAppService;
     _comAppService      = comAppService;
 }
Esempio n. 7
0
 public UserController(IRoleAppService roleAppService, ICommonAppService comService, IBusinessAppService AppService,
                       IUserAppService userAppService, IChainStoreAppService storeAppService, ILogger logger)
 {
     _roleAppService  = roleAppService;
     _comService      = comService;
     _userAppService  = userAppService;
     _logger          = logger;
     _AppService      = AppService;
     _storeAppService = storeAppService;
 }
Esempio n. 8
0
 public BusinessCouponController(CouponAppService couponService, IBusinessAppService AppService, ICommonAppService comService)
 {
     _couponService = couponService;
     _AppService    = AppService;
     _comService    = comService;
 }