コード例 #1
0
 //--------------------------------------------------------------------
 public DataTable FindAllMédicamentTable(Prescription pPrescription)
 {
     return(DataBase.Select("SELECT * FROM tblPrescriptionMédicament WHERE IDPrescription = '" + pPrescription.ID.ToString() + "'"));
 }
コード例 #2
0
 //--------------------------------------------------------------------
 public DataTable FindAllPrescriptionTable(Session pSession)
 {
     return(DataBase.Select("SELECT * FROM tblSessionPrescription WHERE IDSession = '" + pSession.ID.ToString() + "'"));
 }
コード例 #3
0
 //--------------------------------------------------------------------
 public DataTable FindAllPourUnTransactionVente(Guid pTransactionVenteId)
 {
     return(DataBase.Select("SELECT * FROM tblLigneTransactionVente WHERE IDTransactionVente='" + pTransactionVenteId.ToString() + "'"));
 }
コード例 #4
0
 //--------------------------------------------------------------------
 public DataTable FindAllTransactionVenteTable(Session pSession)
 {
     return(DataBase.Select("SELECT * FROM tblSessionTransactionVente WHERE IDSession = '" + pSession.ID.ToString() + "'"));
 }