Example #1
0
 /// <summary>
 /// Modificar el evento para la sección _datosEvento
 /// </summary>
 /// <returns></returns>
 public bool modificarEvento(int idEvento, string nombre, string objetivo, DateTime fvi, DateTime fvf, DateTime fri, DateTime frf, string tipoEvento, string estado)
 {
     try
     {
         return(dal.modificarEvento(idEvento, nombre, objetivo, fvi, fvf, fri, frf, tipoEvento, estado));
     }
     catch (Exception ex) { Console.WriteLine(ex.Message); throw; }
 }