Example #1
0
        private void btnKC_Click(object sender, EventArgs e)
        {
            Pharmacy.QuanLy.BLL.TTonkho tTonKho = new Pharmacy.QuanLy.BLL.TTonkho();
            DataTable data = tTonKho.GetKho_tonkho();

            if (data.Rows.Count > 0)
            {
                MessageBox.Show("Tháng này đã kết chuyển");
            }
            else
            {
                DLL.DataAccess cn = new DLL.DataAccess();
                cn.ExecuteNonQuery("sp_ketchuyenkho", null);
                MessageBox.Show("Đã kết chuyển thành công");
            }
        }
Example #2
0
 private void btnKC_Click(object sender, EventArgs e)
 {
     Pharmacy.QuanLy.BLL.TTonkho tTonKho = new Pharmacy.QuanLy.BLL.TTonkho();
     DataTable data = tTonKho.GetKho_tonkho();
     if (data.Rows.Count > 0) MessageBox.Show("Tháng này đã kết chuyển");
     else
     {
         DLL.DataAccess cn = new DLL.DataAccess();
         cn.ExecuteNonQuery("sp_ketchuyenkho", null);
         MessageBox.Show("Đã kết chuyển thành công");
     }
 }