예제 #1
0
 void InsertMovie(string id, string name, string desc, float length, DateTime startDate, DateTime endDate, string productor, string director, int year, byte[] image)
 {
     if (MovieDAO.InsertMovie(id, name, desc, length, startDate, endDate, productor, director, year, image))
     {
         MessageBox.Show("Thêm phim thành công");
     }
     else
     {
         MessageBox.Show("Thêm phim thất bại");
     }
 }