Exemplo n.º 1
0
 // booking Video
 private void button11_Click(object sender, EventArgs e)
 {
     BookingVideo = new BookingVideo(1, Convert.ToInt32(txtMovieID.Text), Convert.ToInt32(txtCustomerID.Text), dtpIssue.Text, "Book");
     BookingVideo.BookVideo();
     MessageBox.Show("Video is issed on rent ");
     txtMovieID.Text    = "";
     vd_Name.Text       = "";
     vd_Plot.Text       = "";
     Vd_Genre.Text      = "";
     Vd_Year.Text       = "";
     Vd_Copies.Text     = "";
     Vd_Price.Text      = "";
     txtCustomerID.Text = "";
     txtName.Text       = "";
     txtPhone.Text      = "";
     txtAddress.Text    = "";
     txtCountry.Text    = "";
 }