public string BuscarObjeto(ref object unObjetoLocal, short unaOpcion) { cliente registro = (cliente)unObjetoLocal; string valorDevuelto = null; switch (unaOpcion) { case 1: { persona entidad = (persona)BuscarListaPr.BuscarPersona(); if (entidad != null) { registro.fkconyuge = entidad; valorDevuelto = registro.fkconyuge.ToString(); } } break; case 3: { barrio entidad = (barrio)BuscarListaPr.BuscarBarrio(); if (entidad != null) { registro.fkbarrio = entidad; valorDevuelto = entidad.ToString(); } } break; case 4: { profesion entidad = (profesion)BuscarListaPr.BuscarProfesion(); if (entidad != null) { registro.fkprofesione = entidad; valorDevuelto = entidad.ToString(); } } break; } return(valorDevuelto); }
public int Borrar(profesion item) { return(item.BorrarObjetoT()); }
public int Grabar(profesion item) { return(item.GrabarObjetoT(x => x.id)); }