public static LoaiPhieuXuatDTO SelectLoaiPhieuXuatById(string MaLoaiPhieuXuat) { return(LoaiPhieuXuatDAO.SelectLoaiPhieuXuatById(MaLoaiPhieuXuat)); }
public static List <LoaiPhieuXuatDTO> SelectLoaiPhieuXuatAll() { return(LoaiPhieuXuatDAO.SelectLoaiPhieuXuatAll()); }
public static bool DeleteLoaiPhieuXuatById(string maLoaiPhieuXuat) { return(LoaiPhieuXuatDAO.DeleteLoaiPhieuXuatById(maLoaiPhieuXuat)); }
public static bool UpdateLoaiPhieuXuatById(LoaiPhieuXuatDTO loaiPhieuXuatDTO) { return(LoaiPhieuXuatDAO.UpdateLoaiPhieuXuatById(loaiPhieuXuatDTO)); }
public static bool InsertLoaiPhieuXuat(LoaiPhieuXuatDTO loaiPhieuXuatDTO) { return(LoaiPhieuXuatDAO.InsertLoaiPhieuXuat(loaiPhieuXuatDTO)); }
public static string CreateLoaiPhieuXuatId() { return(LoaiPhieuXuatDAO.CreateLoaiPhieuXuatId()); }