public void themcachdung_thuoc() { ThuocDTO thuoc = new ThuocDTO(); thuocbus = new ThuocBUS(); bool kq = thuocbus.themcd("Ăn"); Assert.AreEqual(true, kq); }
public void themdonvi_thuoc() { ThuocDTO thuoc = new ThuocDTO(); thuocbus = new ThuocBUS(); bool kq = thuocbus.themcd("Vỉ"); Assert.AreEqual(true, kq); }
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(); } }