Пример #1
0
 public ExercisesController(IWorkoutService workoutService, IExerciseService exerciseService,
                            IOwnedAuthService ownedAuthService)
 {
     _workoutService   = workoutService;
     _exerciseService  = exerciseService;
     _ownedAuthService = ownedAuthService;
 }
Пример #2
0
 public WorkoutsController(IWorkoutService workoutService, IOwnedAuthService ownedAuthService)
 {
     _workoutService   = workoutService;
     _ownedAuthService = ownedAuthService;
 }