Exemple #1
0
 public HomeController(IElasticManager elasticManager, ICategoryManager categoryManager, IGoodManager goodManager, IPropertyManager propertyManager, IWebShopManager shopManager, IPriceManager priceManager)
 {
     this.priceManager    = priceManager;
     this.categoryManager = categoryManager;
     this.goodManager     = goodManager;
     this.propertyManager = propertyManager;
     this.shopManager     = shopManager;
     this.elasticManager  = elasticManager;
 }
Exemple #2
0
 public GoodController(IGoodManager goodmanager, IElasticManager elasticmanager, IPropertyManager propertymanager, ICategoryManager categoryManager, IWebShopManager webShopManager, IFollowPriceManager followPriceManager, IUserManager userManager, ICommentManager commentManager)
 {
     this.userManager        = userManager;
     this.webShopManager     = webShopManager;
     this.categoryManager    = categoryManager;
     this.goodmanager        = goodmanager;
     this.elasticmanager     = elasticmanager;
     this.propertymanager    = propertymanager;
     this.followPriceManager = followPriceManager;
     this.commentManager     = commentManager;
 }