Beispiel #1
0
 public void EliminarRepuesto(string id)
 {
     IAccesoDatos1 accesoDatos = new RepuestosAD();
     accesoDatos.Eliminar(id);
     if (accesoDatos.Is_Error)
     {
         this.Is_Error = true;
         this.ErrorDescripcion = accesoDatos.ErrorDescripcion;
     }
 }