Exemple #1
0
 public IndexModel(
     SportUpUserManager userManager,
     SignInManager <SportUpUser> signInManager,
     SportManager sportManager)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _sportManager  = sportManager;
 }
 public TeamController(
     ApplicationDbContext context,
     SportUpUserManager userManager,
     SportManager sportManager,
     TeamManager teamManager)
 {
     _context      = context;
     _userManager  = userManager;
     _sportManager = sportManager;
     _teamManager  = teamManager;
 }
 public HomeController(
     ILogger <HomeController> logger,
     ApplicationDbContext context,
     SportUpUserManager userManager,
     SignInManager <SportUpUser> signInManager,
     SportManager sportManager)
 {
     _logger        = logger;
     _context       = context;
     _userManager   = userManager;
     _signInManager = signInManager;
     _sportManager  = sportManager;
 }