コード例 #1
0
 public string EliminaEvento(int id_evento)
 {
     try
     {
         return(VistaEventosDAO.getInstance().EliminaEvento(id_evento));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #2
0
 public List <VistaEvento> ListaEventos()
 {
     try
     {
         return(VistaEventosDAO.getInstance().ListaEventos());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }