public BuildUsersController(MinecraftSiteContext context, UserManager <IdentityUser> userManager, IHostingEnvironment webroot)
 {
     _context     = context;
     _userManager = userManager;
     _webroot     = webroot;
 }
示例#2
0
 public MessagesController(MinecraftSiteContext context, UserManager <IdentityUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }