private Interprete ConstruirInterprete(SqlDataReader reader) { return(new Interprete { InterpreteId = reader.GetInt32(0), Nombre = reader.GetString(1), Pais = _repositorioPaises.GetPaisPorId(reader.GetInt32(2)) }); }
private Negocio ConstruirNegocio(SqlDataReader reader) { return(new Negocio { NegocioId = reader.GetInt32(0), Nombre = reader.GetString(1), Pais = _repositorioPais.GetPaisPorId(reader.GetInt32(2)) }); }