I saw an example in another post about using IEnumerable
var ent = new EntFuncionarios();
IEnumerable<Funcionario> funcionario = ent.Funcionarios;
IEnumerable<Funcionario> temp = funcionario.Where(x => x.FuncID == 2).ToList<Funcionario>();
My question is in relation to the line var ent = new EntFuncionarios()
, what is it, is it a method of the class Officials?