protected BaseController()
 {
     _signInManager = HttpContext.GetOwinContext().Get<ApplicationSignInManager>();
     _userManager = HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();
     _context = HttpContext.GetOwinContext().Get<ApplicationDbContext>();
     _docuSignService = HttpContext.GetOwinContext().Get<DocuSignService>();
 }
 public ManageController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, ApplicationDbContext dbContext, DocuSignService docuSignService)
 {
 }