Exemplo n.º 1
0
 public ActionResult Index(int id)
 {
     var m = new FamilyModel { familyid = id };
     if (m.Family == null)
         return Content("no family");
     return View(m);
 }
Exemplo n.º 2
0
 public ActionResult Index(int? id)
 {
     if (!id.HasValue)
         return Content("no id");
     var m = new FamilyModel { familyid = id.Value };
     if (m.Family == null)
         return Content("no family");
     return View(m);
 }