Exemplo n.º 1
0
 public AthleteController(WorkoutRoutineRepository workoutRoutineRepo, AthleteRepository athleteRepo, AthleteService athleteSvc)
 {
     athleteRepository        = athleteRepo;
     workoutRoutineRepository = workoutRoutineRepo;
     athleteService           = athleteSvc;
 }
Exemplo n.º 2
0
 public AthleteController(WorkoutRoutineRepository workoutRoutineRepo, AthleteRepository athleteRepo)
 {
     athleteRepository        = athleteRepo;
     workoutRoutineRepository = workoutRoutineRepo;
 }