Skip to content

Commit

Permalink
Update AccountController.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaksharma8 authored and Ronak Sharma committed Dec 2, 2021
1 parent ac9218e commit bc9cb3f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions MvcDemo/Controllers/AccountController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,22 @@

namespace MvcDemo.Controllers
{
//first time from dev
[Authorize]
public class AccountController : Controller
{
//first line..

//line from command line..
//adding more cnflicts

private ApplicationSignInManager _signInManager;
private ApplicationUserManager _userManager;

public AccountController()
{
}

public AccountController(string pass)
{
}

public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager )
{
UserManager = userManager;
Expand Down

0 comments on commit bc9cb3f

Please sign in to comment.