Example #1
0
        public CarouselService(ICurrencyService currencyService, IStorageFileService storageFileService)
        {
            _currencyService    = currencyService;
            _storageFileService = storageFileService;

            Logger = NullLogger.Instance;
        }
Example #2
0
 public EvaluateController(IEvaluateService evaluateService, ICurrencyService currencyService, IOrderService orderService, IStorageFileService storageFileService)
 {
     _evaluateService    = evaluateService;
     _currencyService    = currencyService;
     _orderService       = orderService;
     _storageFileService = storageFileService;
 }
Example #3
0
        public AdminController(IStorageFileService storageFileService, ICurrencyService currencyService)
        {
            _storageFileService = storageFileService;
            _currencyService    = currencyService;

            Logger = NullLogger.Instance;
        }
Example #4
0
 /// <summary>
 /// 构造
 /// </summary>
 /// <param name="discoveryService"></param>
 /// <param name="storageFileService"></param>
 /// <param name="currencyService"></param>
 /// <param name="userContainer"></param>
 public AdminController(IDiscoveryService discoveryService, IStorageFileService storageFileService, ICurrencyService currencyService, IUserContainer userContainer)
 {
     _discoveryService   = discoveryService;
     _storageFileService = storageFileService;
     _currencyService    = currencyService;
     _userContainer      = userContainer;
 }
Example #5
0
 public GoodsCategoryController(ICurrencyService currencyService, IGoodsService goodsService, IGoodsCategoryService goodsCategoryService, IStorageFileService storageFileService)
 {
     _currencyService      = currencyService;
     _goodsService         = goodsService;
     _goodsCategoryService = goodsCategoryService;
     _storageFileService   = storageFileService;
 }
Example #6
0
 public SystemMessageService(ICurrencyService currencyService, IPushService pushService, IStorageFileService storageFileService)
 {
     _currencyService    = currencyService;
     _pushService        = pushService;
     _storageFileService = storageFileService;
     Logger = NullLogger.Instance;
 }
Example #7
0
 /// <summary>
 /// 构造
 /// </summary>
 /// <param name="feedbackService"></param>
 /// <param name="storageFileService"></param>
 /// <param name="currencyService"></param>
 /// <param name="userContainer"></param>
 public AdminController(IFeedbackService feedbackService, IStorageFileService storageFileService, ICurrencyService currencyService, IUserContainer userContainer)
 {
     _feedbackService    = feedbackService;
     _storageFileService = storageFileService;
     _currencyService    = currencyService;
     _userContainer      = userContainer;
 }
Example #8
0
        public FileController(ICurrencyService currencyService, IFileService fileService, IStorageFileService storageFileService)
        {
            _currencyService    = currencyService;
            _fileService        = fileService;
            _storageFileService = storageFileService;

            Logger = NullLogger.Instance;
        }
Example #9
0
 public EvaluateService(IUserContainer userContainer, ICurrencyService currencyService, IStorageFileService storageFileService, IMemberService memberService, IEnumerable <IEvaluateServiceProxy> evaluateServiceProxy)
 {
     _userContainer        = userContainer;
     _currencyService      = currencyService;
     _storageFileService   = storageFileService;
     _memberService        = memberService;
     _evaluateServiceProxy = evaluateServiceProxy;
 }
Example #10
0
 public GoodsController(IGoodsService goodsService, ICurrencyService currencyService, IGoodsCategoryService goodsCategoryServices, IStorageFileService storageFileService, IMarkupService markupService, IShippingAreaService shippingAreaService)
 {
     _goodsService          = goodsService;
     _currencyService       = currencyService;
     _goodsCategoryServices = goodsCategoryServices;
     _storageFileService    = storageFileService;
     _markupService         = markupService;
     _shippingAreaService   = shippingAreaService;
 }
Example #11
0
        public GoodsController(ICurrencyService currencyService, IGoodsService goodsService, IGoodsCategoryService goodsCategoryService, IStorageFileService storageFileService, IConfigService configService)
        {
            _currencyService      = currencyService;
            _goodsService         = goodsService;
            _goodsCategoryService = goodsCategoryService;
            _storageFileService   = storageFileService;
            _configService        = configService;

            Logger = NullLogger.Instance;
        }
Example #12
0
 public OrderController(IOrderService orderService, IGoodsService goodsService, ICurrencyService currencyService, IStorageFileService storageFileService, IShippingAreaService shippingAreaService, IWalletService walletService, IConfigService configService)
 {
     _orderService        = orderService;
     _goodsService        = goodsService;
     _currencyService     = currencyService;
     _storageFileService  = storageFileService;
     _shippingAreaService = shippingAreaService;
     _walletService       = walletService;
     _configService       = configService;
 }
Example #13
0
        public OrderService(IUserContainer userContainer, IStorageFileService storageFileService, IEnumerable <IOrderServiceProxy> orderServiceProxy, IWalletService walletService, IConfigService configService)
        {
            _userContainer      = userContainer;
            _storageFileService = storageFileService;
            _orderServiceProxy  = orderServiceProxy;
            _walletService      = walletService;
            _configService      = configService;

            Logger = NullLogger.Instance;
        }
Example #14
0
        public MemberService(ICurrencyService currencyService, IStorageFileService storageFileService, DefaultUserManager userManager, IUserContainer userContainer, ICacheManager cacheManager, ISignals signals)
        {
            _currencyService    = currencyService;
            _storageFileService = storageFileService;
            _userManager        = userManager;
            _userContainer      = userContainer;
            _cacheManager       = cacheManager;
            _signals            = signals;


            Logger = NullLogger.Instance;
        }
Example #15
0
 public PartnerController(IMemberService memberService, DefaultUserManager userManager, IFileService fileService, IStorageFileService storageFileService, ISmsService smsService, ICurrencyService currencyService, ISignals signals, IUserContainer userContainer, IWalletService walletService, IConfigService configService)
 {
     _memberService      = memberService;
     _userManager        = userManager;
     _fileService        = fileService;
     _storageFileService = storageFileService;
     _smsService         = smsService;
     _currencyService    = currencyService;
     _signals            = signals;
     _userContainer      = userContainer;
     _walletService      = walletService;
     _configService      = configService;
 }
Example #16
0
 public ComplaintController(IFeedbackService feedbackService, ICurrencyService currencyService, IStorageFileService storageFileService)
 {
     _feedbackService    = feedbackService;
     _currencyService    = currencyService;
     _storageFileService = storageFileService;
 }
Example #17
0
        public GoodsService(IStorageFileService storageFileService)
        {
            _storageFileService = storageFileService;

            Logger = NullLogger.Instance;
        }
Example #18
0
 public GoodsCategoryController(IGoodsCategoryService goodsCategoryServices, IStorageFileService storageFileService)
 {
     _goodsCategoryServices = goodsCategoryServices;
     _storageFileService    = storageFileService;
 }
Example #19
0
 public AdvertController(IStorageFileService storageFileService, ICurrencyService currencyService)
 {
     _storageFileService = storageFileService;
     _currencyService    = currencyService;
 }
 public GoodsBrandController(ICurrencyService currencyService, IStorageFileService storageFileService)
 {
     _currencyService    = currencyService;
     _storageFileService = storageFileService;
 }
Example #21
0
 public SystemConfigController(IConfigService configService, IStorageFileService storageFileService)
 {
     _configService      = configService;
     _storageFileService = storageFileService;
 }
Example #22
0
 public FeedbackService(ICurrencyService currencyService, IStorageFileService storageFileService, IFileService fileService)
 {
     _currencyService    = currencyService;
     _storageFileService = storageFileService;
     _fileService        = fileService;
 }
Example #23
0
 public RefundController(ICurrencyService currencyService, IRefundService refundService, IStorageFileService storageFileService)
 {
     _currencyService    = currencyService;
     _refundService      = refundService;
     _storageFileService = storageFileService;
 }
Example #24
0
 public SinglePageService(ICurrencyService currencyService, IStorageFileService storageFileService)
 {
     _currencyService    = currencyService;
     _storageFileService = storageFileService;
 }
Example #25
0
 public AdminController(IMemberService memberService, IStorageFileService storageFileService)
 {
     _memberService      = memberService;
     _storageFileService = storageFileService;
 }
Example #26
0
 public CommentService(ICurrencyService currencyService, IStorageFileService storageFileService, IMemberService memberService)
 {
     _currencyService    = currencyService;
     _storageFileService = storageFileService;
     _memberService      = memberService;
 }