public ExameService(DataContext context, IMapper mapper, IOptions <AppSettings> appSettings, IExerciciosServices exerciciosServices) { _context = context; _mapper = mapper; _appSettings = appSettings.Value; _exerciciosServices = exerciciosServices; }
public ExerciciosController(IExerciciosServices exerciciosServices, IMapper mapper) { _exerciciosServices = exerciciosServices; _mapper = mapper; }