示例#1
0
 public MessagesService(ChatIncDbContext context)
 {
     this.context = context;
 }
 public UserService(IOptions <AppSettings> appSettings, ChatIncDbContext db)
 {
     _appSettings = appSettings.Value;
     _db          = db;
 }
 public MessagesController(ChatIncDbContext context)
 {
     this.context = context;
 }
示例#4
0
 public UsersController(ChatIncDbContext context, IOptions <JwtSettings> jwtSettings)
 {
     this.context     = context;
     this.jwtSettings = jwtSettings.Value;
 }