public bool Delete(Evento events) { try { DadosdoEvento.Excluir(events); return true; } catch (Exception e) { throw e; } }
public bool Insert(Evento events) { try { DadosdoEvento.Inserir(events); return true; } catch (Exception e) { throw e; } }
public bool Alter(Evento events) { try { DadosdoEvento.Alterar(events); return true; } catch (Exception e) { throw e; } }