public ProfileViewModel(
     UserManagerExtend <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
 }
 public StoreController(IStoresService service, UserManagerExtend <ApplicationUser> userManager)
 {
     this.service     = service;
     this.userManager = userManager;
 }