예제 #1
0
 public static string XoaBenhAn(string id)
 {
     return(BenhAnRepository.DeleteBenhAn(id));
 }
예제 #2
0
 public static string SuaBenhAn(BenhAn ba)
 {
     return(BenhAnRepository.UpdateBenhAn(ba));
 }
예제 #3
0
 public static List <BenhAn> DanhMucBenhAn()
 {
     return(BenhAnRepository.ShowAllBenhAn());
 }
예제 #4
0
 public static BenhAn ThongTinBenhAn(string id)
 {
     return(BenhAnRepository.ShowBenhAn(id));
 }
예제 #5
0
 public static string ThemBenhAn(BenhAn ba)
 {
     return(BenhAnRepository.AddBenhAn(ba));
 }