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