public List <TEntity> ListaGet()
 {
     using (var Conex = new SistemaPresupuestoDB())
     {
         try
         {
             return(EntitySet.ToList());
         }
         catch (Exception)
         {
             throw;
         }
     }
 }
 public Repositorio()
 {
     Contex = new SistemaPresupuestoDB();
 }