Beispiel #1
0
 public TokenController(IConfiguration config, IMapper mapper, Appify_DevContext dbContext)
 {
     this.config = config;
     this.mapper = mapper;
     context     = dbContext;
 }
Beispiel #2
0
 public UserLoginAdapter(IMapper mapper, Appify_DevContext dbContext)
 {
     this.mapper = mapper;
     context     = dbContext;
 }
Beispiel #3
0
 public UserLoginController(IMapper mapper, Appify_DevContext dbContext, IHostingEnvironment env)
 {
     _env        = env;
     this.mapper = mapper;
     context     = dbContext;
 }