public ActionResult SentTo(int? id) { var m = new EmailsModel { peopleid = id }; return View("Index", m); }
public ActionResult Index() { var m = new EmailsModel(); return View(m); }
public ActionResult SentBy(int? id) { var m = new EmailsModel { senderid = id }; return View("Index", m); }
public ActionResult List(EmailsModel m) { UpdateModel(m.Pager); return View(m); }