Retrieving various fields from another app

Retrieving various fields from another app

Hello,
 
I have 2 Applications and I want to lookup some information from Form B (Country; Skill & Señority). I have proved
a function with one value and that works fine, my question is how can retrieve with a function more values for an selecte employee?
 
Actual Function is:
 
base_de_curriculums.pais.PaisdelConsultor(input.Nombre_y_Apellido);
 
string pais.PaisdelConsultor(string Consultor)
{
    if (count(Alta_Consultores[Nombreyap == input.Consultor])  >  0)
    {
        country  =  Alta_Consultores  [Nombreyap == input.Consultor];
        return country.Nacionalidad;
    }
    else
    {
        return "";
    }
}











Is possible to return multiples fields?, how, Please give me an clear example.
 
Thanks a Lot.