Example #1
0
 public ExerciseController(IExerciseRepo exercises, ITrainingRepo trainingen, IExerciseEvaluationRepo evaluations, IGymnastRepo gymnasts)
 {
     _exercises   = exercises;
     _trainingen  = trainingen;
     _evaluations = evaluations;
     _gymnasts    = gymnasts;
 }
 public GymnastController(IGymnastRepo gymnasts)
 {
     _gymnasts = gymnasts;
 }
 public TrainingController(IGymnastRepo gymnasts, ITrainingRepo trainings, ICategoryRepo categories)
 {
     _gymnasts   = gymnasts;
     _trainings  = trainings;
     _categories = categories;
 }