예제 #1
0
		public ActionResult SentTo(int? id)
		{
			var m = new EmailsModel { peopleid = id };
			return View("Index", m);
		}
예제 #2
0
		public ActionResult Index()
		{
			var m = new EmailsModel();
			return View(m);
		}
예제 #3
0
		public ActionResult SentBy(int? id)
		{
			var m = new EmailsModel { senderid = id };
			return View("Index", m);
		}
예제 #4
0
		public ActionResult List(EmailsModel m)
		{
			UpdateModel(m.Pager);
			return View(m);
		}