public static string XoaBenhAn(string id) { return(BenhAnRepository.DeleteBenhAn(id)); }
public static string SuaBenhAn(BenhAn ba) { return(BenhAnRepository.UpdateBenhAn(ba)); }
public static List <BenhAn> DanhMucBenhAn() { return(BenhAnRepository.ShowAllBenhAn()); }
public static BenhAn ThongTinBenhAn(string id) { return(BenhAnRepository.ShowBenhAn(id)); }
public static string ThemBenhAn(BenhAn ba) { return(BenhAnRepository.AddBenhAn(ba)); }