///<summary> ///Editar registro en tblEvento por idEvento /// </summary> public bool editarEvento(int idEvento, string nombre, string objetivo, string rutaIcono, DateTime fvi, DateTime fvf, DateTime fri, DateTime frf, string rutaPlantilla, string tipoEvento) { try { return(dal.editarEvento(idEvento, nombre, objetivo, rutaIcono, fvi, fvf, fri, frf, rutaPlantilla, tipoEvento)); } catch (Exception ex) { Console.WriteLine(ex.Message); throw; } }