Example #1
0
 public static LoaiPhieuXuatDTO SelectLoaiPhieuXuatById(string MaLoaiPhieuXuat)
 {
     return(LoaiPhieuXuatDAO.SelectLoaiPhieuXuatById(MaLoaiPhieuXuat));
 }
Example #2
0
 public static List <LoaiPhieuXuatDTO> SelectLoaiPhieuXuatAll()
 {
     return(LoaiPhieuXuatDAO.SelectLoaiPhieuXuatAll());
 }
Example #3
0
 public static bool DeleteLoaiPhieuXuatById(string maLoaiPhieuXuat)
 {
     return(LoaiPhieuXuatDAO.DeleteLoaiPhieuXuatById(maLoaiPhieuXuat));
 }
Example #4
0
 public static bool UpdateLoaiPhieuXuatById(LoaiPhieuXuatDTO loaiPhieuXuatDTO)
 {
     return(LoaiPhieuXuatDAO.UpdateLoaiPhieuXuatById(loaiPhieuXuatDTO));
 }
Example #5
0
 public static bool InsertLoaiPhieuXuat(LoaiPhieuXuatDTO loaiPhieuXuatDTO)
 {
     return(LoaiPhieuXuatDAO.InsertLoaiPhieuXuat(loaiPhieuXuatDTO));
 }
Example #6
0
 public static string CreateLoaiPhieuXuatId()
 {
     return(LoaiPhieuXuatDAO.CreateLoaiPhieuXuatId());
 }