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