コード例 #1
0
ファイル: UnitTesting.cs プロジェクト: krypton99/QLPM-test
        public void themcachdung_thuoc()
        {
            ThuocDTO thuoc = new ThuocDTO();

            thuocbus = new ThuocBUS();
            bool kq = thuocbus.themcd("Ăn");

            Assert.AreEqual(true, kq);
        }
コード例 #2
0
ファイル: UnitTesting.cs プロジェクト: krypton99/QLPM-test
        public void themdonvi_thuoc()
        {
            ThuocDTO thuoc = new ThuocDTO();

            thuocbus = new ThuocBUS();
            bool kq = thuocbus.themcd("Vỉ");

            Assert.AreEqual(true, kq);
        }
コード例 #3
0
ファイル: quydinh.xaml.cs プロジェクト: krypton99/QLPM-test
 private void thaydoicd_Click(object sender, RoutedEventArgs e)
 {
     if (cachdung.Text == "")
     {
         MessageBox.Show("Vui lòng điền cách dùng mới");
     }
     else
     {
         ThuocBUS thBus = new ThuocBUS();
         bool     kq    = thBus.themcd(cachdung.Text.ToString());
         if (kq == false)
         {
             MessageBox.Show("Thêm cách dùng thất bại");
         }
         else
         {
             MessageBox.Show("Thêm cách dùng thành công");
         }
         load();
     }
 }