public Genero Get(int id) { using (var e = new Entities()) { return e.Generos.FirstOrDefault(c => c.Id == id); } }
public Genero[] Get() { Genero[] retorno = null; using (var e = new Entities()) { retorno = e.Generos.Take(10).ToArray(); } return retorno; }