Exemplo n.º 1
0
 public UserService(FeedbackAppDbContext context, IConfiguration configuration, IMapper mapper)
 {
     _context       = context;
     _mapper        = mapper;
     _configuration = configuration;
 }
 public QuestionService(FeedbackAppDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public EnrollmentService(IMapper mapper, FeedbackAppDbContext context)
 {
     _context = context;
     _mapper  = mapper;
 }
 public AssignmentService(FeedbackAppDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 5
0
 public ClassService(FeedbackAppDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public StatisticService(FeedbackAppDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
 public ModuleService(FeedbackAppDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }