Ejemplo n.º 1
0
 /* Sự kiện lưu thông tin đầu sách được tạo */
 private void btnSave_Click(object sender, EventArgs e)
 {
     if (CheckInput())
     {
         string     ten     = txbNameTitle.Text;
         int        soluong = (Int32)nudQuantity.Value;
         int        songay  = (Int32)nudDay.Value;
         int        phat    = (Int32)nudMultc.Value;
         TheLoaiDTO theLoai = cbbBookCate.SelectedValue as TheLoaiDTO;
         int        giabia  = (Int32)nudPrice.Value;
         if (DauSachBUS.AddTitle(ten, soluong, songay, phat, theLoai, giabia) > 0)
         {
             this.Close();
         }
         else
         {
             MessageBox.Show("Lưu không thành công.", "Thông báo");
         }
     }
     else
     {
         MessageBox.Show("Vui lòng nhập dữ liệu.", "Thông báo");
     }
 }