Exemple #1
0
 /// <summary>
 /// lấy thông tin phiếu mượn bằng mã phiếu mượn
 /// </summary>
 /// <param name="maPhieu"></param>
 /// <returns></returns>
 public CT_PhieuMuon getCTPhieu(int maPhieu)
 {
     CT_PhieuMuon ctPhieu = new CT_PhieuMuon();
     CT_PhieuMuonDAL ctPhieuDAL = new CT_PhieuMuonDAL();
     ctPhieu = ctPhieuDAL.getCT_PhieuMuonById(maPhieu);
     return ctPhieu;
 }