Esempio n. 1
0
 public CacheItemsProviderService(
     ICacheService cache,
     IContestCategoriesDataService contestCategoriesData)
 {
     this.cache = cache;
     this.contestCategoriesData = contestCategoriesData;
 }
Esempio n. 2
0
 public LecturersKendoRemoteDataController(
     IOjsData data,
     IContestsDataService contestsData,
     IContestCategoriesDataService contestCategoriesData)
     : base(data)
 {
     this.contestsData          = contestsData;
     this.contestCategoriesData = contestCategoriesData;
 }
 public ListController(
     IOjsData data,
     IContestsDataService contestsData,
     IContestCategoriesDataService contestCategoriesData,
     ICacheItemsProviderService cacheItems)
     : base(data)
 {
     this.contestsData          = contestsData;
     this.contestCategoriesData = contestCategoriesData;
     this.cacheItems            = cacheItems;
 }
 public ContestsController(
     IOjsData data,
     IContestsDataService contestsData,
     IContestCategoriesDataService contestCategoriesData,
     IParticipantsDataService participantsData,
     IIpsDataService ipsData,
     IContestsBusinessService contestsBusiness,
     IParticipantsBusinessService participantsBusiness)
     : base(data)
 {
     this.contestsData          = contestsData;
     this.contestCategoriesData = contestCategoriesData;
     this.participantsData      = participantsData;
     this.ipsData              = ipsData;
     this.contestsBusiness     = contestsBusiness;
     this.participantsBusiness = participantsBusiness;
 }