public void setpeso(int newVal) {
   implementacion.setpeso(newVal);
 }
 public void setfechaDesde(Date newVal) {
   implementacion.setfechaDesde(newVal);
 }
 public void setfechaHasta(Date newVal) {
   implementacion.setfechaHasta(newVal);
 }
 public void setcantidadReclamosDesde(int newVal) {
   implementacion.setcantidadReclamosDesde(newVal);
 }
 public void setcantidadReclamosHasta(int newVal) {
   implementacion.setcantidadReclamosHasta(newVal);
 }
 public int getpeso() {
   return implementacion.getpeso();
 }
 public Date getfechaHasta() {
   return implementacion.getfechaHasta();
 }
 public Date getfechaDesde() {
   return implementacion.getfechaDesde();
 }
 public int getcantidadReclamosHasta() {
   return implementacion.getcantidadReclamosHasta();
 }
 public int getcantidadReclamosDesde() {
   return implementacion.getcantidadReclamosDesde();
 }