Esempio n. 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;
 }
Esempio n. 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;
 }
Esempio n. 3
0
 public UniversalParserController(IDownloadManager downloadManager, ICategoryManager categoryManager, IWebShopManager shopManager, IParserTaskManager parsertaskManager, IURLManager urlManager, IExecuteManager taskinfoManager, IPreviewManager previewManager, IAppSettingsManager appSettingsManager, IDeleteFilesManager deleteFilesManager)
 {
     this.downloadManager    = downloadManager;
     this.categoryManager    = categoryManager;
     this.shopManager        = shopManager;
     this.parserTaskManager  = parsertaskManager;
     this.urlManager         = urlManager;
     this.previewManager     = previewManager;
     this.taskinfoManager    = taskinfoManager;
     this.appSettingsManager = appSettingsManager;
     this.deleteFilesManager = deleteFilesManager;
 }
Esempio n. 4
0
 public WebShopController(IWebShopManager webShopManager)
 {
     WebShopManager = webShopManager;
 }