Example #1
0
 public ParticipantsService(ParticipantsRepository repo, ChallengesService cs, DailyPointsService dps)
 {
     _repo = repo;
     _cs   = cs;
     _dps  = dps;
 }
Example #2
0
 public RuleDetailsService(RuleDetailsRepository repo, ChallengesService cRepo)
 {
     _repo  = repo;
     _cRepo = cRepo;
 }
Example #3
0
 public DailyPointsService(DailyPointsRepository repo, ChallengesService cs)
 {
     _repo = repo;
     _cs   = cs;
 }