public ActionResult Delete(string id) { if (String.IsNullOrEmpty(id)) { return(View()); } var result = _aspNetUsersService.RemoveUser(id); return(RedirectToAction("Index")); }