public CoachesController(LaMasiaDBContext context)
 {
     _context = context;
 }
예제 #2
0
 public PlayersController(LaMasiaDBContext context)
 {
     _context = context;
 }
예제 #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;
 }
예제 #6
0
 public ManagersController(LaMasiaDBContext context)
 {
     _context = context;
 }
 public TeamsController(LaMasiaDBContext context)
 {
     _context = context;
 }