Fix typo in samples

This commit is contained in:
Hao Kung 2014-10-16 13:12:38 -07:00
parent e724e4248c
commit 92267b4c25
1 changed files with 5 additions and 6 deletions

View File

@ -1,10 +1,9 @@
using IdentitySample.Models;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Mvc;
using System.Linq;
using System.Linq;
using System.Security.Principal;
using System.Threading.Tasks;
using IdentitySample.Models;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Mvc;
namespace IdentitySample
{
@ -13,7 +12,7 @@ namespace IdentitySample
{
public ManageController(UserManager<ApplicationUser> userManager, SignInManager<ApplicationUser> signInManager)
{
UserManager = UserManager;
UserManager = userManager;
SignInManager = signInManager;
}