Exemplo n.º 1
0
 public ExerciseService(IWorkoutRepo workoutRepo, IUnitOfWork unitOfWork, IMapper mapper, IExerciseRepo exerciseRepo,
                        IShuffleService shuffleService)
 {
     _workoutRepo    = workoutRepo;
     _unitOfWork     = unitOfWork;
     _mapper         = mapper;
     _exerciseRepo   = exerciseRepo;
     _shuffleService = shuffleService;
 }
 public GenerateReviewScheduleService(
     IDeveloperRepository developerRepository,
     IShuffleService shuffleService,
     IHolidaysCalendar holidaysCalendar)
 {
     _developerRepository = developerRepository;
     _shuffleService      = shuffleService;
     _holidaysCalendar    = holidaysCalendar;
 }
Exemplo n.º 3
0
 public Services(IShuffleService shuffleService, IDeckService <IDeck> deckService)
 {
     ShuffleService = shuffleService;
     DeckService    = deckService;
 }
Exemplo n.º 4
0
        //IConfigurationRoot _config;

        public ShuffleController(IShuffleService shuffleService)
        {
            _shuffleService = shuffleService;
        }