public bool leer(out string datos) { datos = EmpresaDAO.ObtenerEmpresa().MostrarEmpresa(); if (datos == null) { return(false); } else { return(true); } }
public bool eliminar() { return(EmpresaDAO.EliminarEmpresa(this)); }
public bool modificar() { return(EmpresaDAO.ModificarEmpresa(this)); }
public bool guardar() { return(EmpresaDAO.InsertarEmpresa(this)); }