Esempio n. 1
0
        public ActionResult Index()
        {
            List <NOW> ListaNow = new List <NOW>();

            ListaNow = TiDAO.listar();
            return(View(ListaNow));
        }
Esempio n. 2
0
 public ActionResult TiNOW(NOW now)
 {
     TiDAO.CadastrarTi(now);
     return(RedirectToAction("Index"));
 }