public ActionResult Index()
 {
     PortalModel details = new PortalModel();
     PortalModel getobj = new PortalModel();
     details = getobj.GetUsers();
     return View(details);
 }
 public ActionResult Index()
 {
     ViewBag.agentName = "Welcome " + Session["agentName"];
     PortalModel details = new PortalModel();
     PortalModel getobj = new PortalModel();
     details = getobj.GetUsers();
     return View(details);
 }