Example #1
0
 public ActionResult Contactos()
 {
     if (!this.currentUser()) { return RedirectToAction("Ingresar"); }
     ContactoBL objBL = new ContactoBL();
     return View(objBL.getContactos());
 }