예제 #1
0
 public ExerciseController(IExerciseRepo exercises, ITrainingRepo trainingen, IExerciseEvaluationRepo evaluations, IGymnastRepo gymnasts)
 {
     _exercises   = exercises;
     _trainingen  = trainingen;
     _evaluations = evaluations;
     _gymnasts    = gymnasts;
 }
예제 #2
0
 public ExerciseService(IWorkoutRepo workoutRepo, IUnitOfWork unitOfWork, IMapper mapper, IExerciseRepo exerciseRepo,
                        IShuffleService shuffleService)
 {
     _workoutRepo    = workoutRepo;
     _unitOfWork     = unitOfWork;
     _mapper         = mapper;
     _exerciseRepo   = exerciseRepo;
     _shuffleService = shuffleService;
 }
예제 #3
0
 public ExerciseController(IExerciseRepo repo)
 {
     _repo = repo;
 }
 public ExerciseEvaluationController(IExerciseEvaluationRepo evaluations, ITrainingRepo trainings, IExerciseRepo exercises)
 {
     _evaluations = evaluations;
     _trainings   = trainings;
     _exercises   = exercises;
 }
예제 #5
0
 public ExerciseController(IExerciseRepo repository, IMapper mapper, IAuthenticateRepo validate, IPetRepo petRepo)
 {
     _repository = repository;
     _mapper     = mapper;
     _validate   = validate;
 }