public CoachesController(LaMasiaDBContext context)
 {
     _context = context;
 }
Esempio n. 2
0
 public PlayersController(LaMasiaDBContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public RegisterService(LaMasiaDBContext dbContext, ILoginService loginService)
 {
     DbContext    = dbContext;
     LoginService = loginService;
 }
 public SimpleLoginService(LaMasiaDBContext dbContext)
 {
     DbContext = dbContext;
 }
 public JwtLoginService(LaMasiaDBContext dbContext, IOptions <AppSettings> appSettings)
     : base(dbContext)
 {
     _appSettings = appSettings.Value;
 }
Esempio n. 6
0
 public ManagersController(LaMasiaDBContext context)
 {
     _context = context;
 }
 public TeamsController(LaMasiaDBContext context)
 {
     _context = context;
 }