public ActionResult Display(OrgPrevMemberModel m)
 {
     return View("Display", m);
 }
 public ActionResult Display(int oid, int pid)
 {
     var m = new OrgPrevMemberModel(oid, pid);
     return View("Display", m);
 }