diff --git a/samples/IdentitySample.Mvc/Controllers/ManageController.cs b/samples/IdentitySample.Mvc/Controllers/ManageController.cs index c824cedf76..04f75e19cb 100644 --- a/samples/IdentitySample.Mvc/Controllers/ManageController.cs +++ b/samples/IdentitySample.Mvc/Controllers/ManageController.cs @@ -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 userManager, SignInManager signInManager) { - UserManager = UserManager; + UserManager = userManager; SignInManager = signInManager; }