Пример #1
0
 public ExcerciseController(ILogger <ExcerciseController> logger,
                            IExcerciseService excerciseService)
 {
     _logger           = logger;
     _excerciseService = excerciseService;
 }
Пример #2
0
 public ExercisesController(IExcerciseService excerciseService, IMapper mapper)
 {
     _excerciseService = excerciseService;
     _mapper           = mapper;
 }
 public ExcerciseController(IExcerciseService excerciseService)
 {
     this.excerciseService = excerciseService;
 }