public Genre GetGenre(int genreid) { Genre g = new Genre(); using (context) { g = DALServices.GetGenre(context, genreid); } ClearContext(); return(g); }