Exemplo n.º 1
0
 public LoginController(CompostDataContext context, IOptions <AppSettings> settings, IMapper mapper, ILoginService loginService)
 {
     _context      = context;
     _settings     = settings.Value;
     _mapper       = mapper;
     _loginService = loginService;
 }
Exemplo n.º 2
0
 public CompostController(CompostDataContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public MigrationsController(CompostDataContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public UsersController(CompostDataContext context, IMapper mapper, ILoginService loginService)
 {
     _context      = context;
     _mapper       = mapper;
     _loginService = loginService;
 }
Exemplo n.º 5
0
 public DeviceController(CompostDataContext context, IMapper mapper)
 {
     _context = context;
     Mapper   = mapper;
 }