Esempio n. 1
0
 public AdianboVideoController(IMongoRepo<TaskModel> taskmodel_repo,
     IMongoRepo<AdianboVideo> adianbovideo_repo,
     IMongoRepo<Shudong> shudong_repo)
 {
     this.taskModelCollection = taskmodel_repo.Collection;
     this.adianboVideoCollection = adianbovideo_repo.Collection;
     this.shudongCollection = shudong_repo.Collection;
 }
Esempio n. 2
0
        public SpmGgpttController(IMongoRepo<GgpttCard> spggptt_repos, IMongoRepo<Card> ggpttcard_repos, IMongoRepo<Source> source_collection)
        {
            this.spGgpttCollection = spggptt_repos.Collection;
            this.ggpttCardCollection = ggpttcard_repos.Collection;
            this.sourceCollection = source_collection.Collection;

            TagGenerate();
        }
        public BaozouMatchController(IMongoRepo<TaskModel> taskmodel_repo,
			IMongoRepo<Team> baozouteam_repo,
			IMongoRepo<LiveVideo> baozoulive_repo,
			IMongoRepo<Match> baozoumatch_repo)
        {
            this.taskModelCollection = taskmodel_repo.Collection;
            this.baozouMatchCollection = baozoumatch_repo.Collection;
            this.baozouTeamCollection = baozouteam_repo.Collection;
            this.baozouLiveCollection = baozoulive_repo.Collection;
        }
 public HotHotelController(IMongoRepo<TaskModel> taskRepo, IMongoRepo<Hotel> hotelRepo)
 {
     _taskCollection = taskRepo.Collection;
     _hotelCollection = hotelRepo.Collection;
     //var taskModel = new TaskModel()
     //{
     //    SourceCode = "HotHotel",
     //    UrlTemp = "http://www.dianping.com/shop/{0}"
     //};
 }
Esempio n. 5
0
 public VareController(IMongoRepo ctx)
 {
     _ctx = ctx;
 }
Esempio n. 6
0
 public TaskController(IMongoRepo<TaskModel> taskmodel_repo, IMongoRepo<Shudong> shudong_repo)
 {
     this.taskModelCollection = taskmodel_repo.Collection;
 }
Esempio n. 7
0
 public GgpttCardController(IMongoRepo<Card> ggpttcard_repos, IMongoRepo<Source> source_repos)
 {
     this.collection = ggpttcard_repos.Collection;
     this.sourceCollection = source_repos.Collection;
 }
Esempio n. 8
0
 public BaozouMatchController(IMongoRepo<Match> _repos)
 {
     this.collection = _repos.Collection;
 }
Esempio n. 9
0
 public BaozouMatchController(IMongoRepo<Match> _repo, IMongoRepo<Team> _team_repo, IMongoRepo<LiveVideo> _livevideo_repo)
 {
     this.collection = _repo.Collection;
     this.teamCollection = _team_repo.Collection;
     this.liveVideoCollection = _livevideo_repo.Collection;
 }
Esempio n. 10
0
 public GgpttCardController(IMongoRepo<TaskModel> taskmodel_repo,
     IMongoRepo<GgpttCard> ggpttcard_repo)
 {
     this.taskModelCollection = taskmodel_repo.Collection;
     this.ggpttCardCollection = ggpttcard_repo.Collection;
 }
Esempio n. 11
0
 public BaozouAssistController(IMongoRepo<Match> _repo, IMongoRepo<Team> _team_repo, IMongoRepo<LiveVideo> _live_repo)
 {
     this.collection = _repo.Collection;
     this.team_collection = _team_repo.Collection;
     this.live_collection = _live_repo.Collection;
 }
Esempio n. 12
0
 public SiteController(IMongoRepo<Site> site_repo)
 {
     this.siteCollection = site_repo.Collection;
 }
Esempio n. 13
0
 public BaozouTeamController(IMongoRepo<Team> _repo)
 {
     this.collection = _repo.Collection;
 }
Esempio n. 14
0
 public BaozouLiveVideoController(IMongoRepo<LiveVideo> _repo)
 {
     this.collection = _repo.Collection;
 }
Esempio n. 15
0
 public GgpttTagAssemblyController(IMongoRepo<TagAssembly> sourcegroup_repos)
 {
     this.collection = sourcegroup_repos.Collection;
 }
Esempio n. 16
0
 public GgpttSourceController(IMongoRepo<Source> site_repo)
 {
     this.collection = site_repo.Collection;
 }