Beispiel #1
0
 //get name through key block
 public static string GetNameThrKeyBlock(string key)
 {
     return(BLOCK_DAL.GetNameThrKeyBlock(key));
 }
Beispiel #2
0
 //get single block
 public static List <BLOCK_DTO> GetSingleBlock(string idBlock)
 {
     return(BLOCK_DAL.GetSingleBlock(idBlock));
 }
Beispiel #3
0
 //Tìm kiếm kho hàng
 public static List <BLOCK_DTO> TimKiemKhoHang(string idBl)
 {
     return(BLOCK_DAL.TimKiemKhoHang(idBl));
 }
Beispiel #4
0
 //Xóa kho hàng
 public static bool XoaKhoHang(string idBl)
 {
     return(BLOCK_DAL.XoaKhoHang(idBl));
 }
Beispiel #5
0
 //Sửa thông tin kho hàng
 public static BLOCK_DTO SuaKhoHang(BANG_BLOCK bl)
 {
     return(BLOCK_DAL.SuaKhoHang(bl));
 }
Beispiel #6
0
 //Thêm kho hàng.
 public static BLOCK_DTO ThemKhoHang(BANG_BLOCK bl)
 {
     return(BLOCK_DAL.ThemKhoHang(bl));
 }
Beispiel #7
0
 //Lấy danh sách kho hàng
 public static List <BLOCK_DTO> LayDanhSachKhoHang()
 {
     return(BLOCK_DAL.LayDanhSachKhoHang());
 }