Esempio n. 1
0
 public GameController(Ratchet_DeadlockedContext _db)
 {
     db = _db;
 }
 public AuthenticationService(IOptions <AppSettings> _appSettings, Ratchet_DeadlockedContext _db)
 {
     appSettings = _appSettings.Value;
     db          = _db;
 }
 public AccountController(Ratchet_DeadlockedContext _db, IAuthService _authService)
 {
     db          = _db;
     authService = _authService;
 }
 public BuddyController(Ratchet_DeadlockedContext _db)
 {
     db = _db;
 }