Exemple #1
0
 public List <Cliente> ListaCliente()
 {
     try
     {
         return(EventoDAO.getInstance().ListaCliente());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemple #2
0
 public bool RegistrarEvento(Evento objEvento)
 {
     try
     {
         return(EventoDAO.getInstance().RegistrarEvento(objEvento));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }