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