private void btnAnadir_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                int tiempo = ValidationUtil.NumeroInteger(ValidationUtil.NullOrEmpty(tiempoDeAlquiler.Text));

                string   tempDate = ValidationUtil.NullOrEmpty(fechaDeAlquiler.SelectedDate.ToString());
                DateTime fecha    = DateTime.Parse(tempDate);

                alquilerId.Text = alquilerService.anadirAlquiler(productoID, clienteID, fecha, tiempo).ToString();
                mostrarInfo(alquilerService.mostrarAlquilerConID(Int32.Parse(alquilerId.Text)));
            }
            catch (Exception err)
            {
                MessageBox.Show(err.Message);
            }
        }