I need to get a Generic Object List parameter and manipulate it, although I do not understand how to do it.
Example:
public class Funcionario
{
public long Id {get; set;}
public string Nome {get; set;}
public DateTime DataContrato {get; set;}
}
public class Professor
{
public long Id {get; set;}
public string Nome {get; set;}
public bool IsAtivo {get; set;}
}
public void Reload(List<objeto> GridListaObjeto, int qtde)
{
foreach (var obj in GridListaObjeto)
{
string sId = obj.Id;
string sNome = obj.Nome;
}
}