コード例 #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;
 }