private List<Entidade> ListarEntidades()
 {
     using (Context db = new Context())
     {
         EntidadeBLL bll = new EntidadeBLL(db, -999);
         return bll.Find().ToList();
     }
 }