示例#1
0
 public AthleteController(WorkoutRoutineRepository workoutRoutineRepo, AthleteRepository athleteRepo, AthleteService athleteSvc)
 {
     athleteRepository        = athleteRepo;
     workoutRoutineRepository = workoutRoutineRepo;
     athleteService           = athleteSvc;
 }
示例#2
0
 public AthleteController(WorkoutRoutineRepository workoutRoutineRepo, AthleteRepository athleteRepo)
 {
     athleteRepository        = athleteRepo;
     workoutRoutineRepository = workoutRoutineRepo;
 }