public ScheduledWorkoutsController(ScheduledWorkoutRepository scheduledWorkoutRepository, WorkoutRepository workoutRepository, UserRepository userRepository, IMapper mapper)
 {
     this.scheduledWorkoutRepository = scheduledWorkoutRepository;
     this.workoutRepository          = workoutRepository;
     this.userRepository             = userRepository;
     this.mapper = mapper;
 }
Esempio n. 2
0
 public WorkoutInvitationsController(
     WorkoutInvitationRepository workoutInvitationRepository,
     ScheduledWorkoutRepository scheduledWorkoutRepository,
     UserRepository userRepository,
     IMapper mapper)
 {
     this.workoutInvitationRepository = workoutInvitationRepository;
     this.scheduledWorkoutRepository  = scheduledWorkoutRepository;
     this.userRepository = userRepository;
     this.mapper         = mapper;
 }