コード例 #1
0
        /***** Insert Prescription Information ****/
        public bool GetPrescriptionResult(Prescription oPrescription)
        {
            DAL.PrescriptionFormDal dal = new DAL.PrescriptionFormDal();
            bool confirmPrescribeInsert = dal.InsertPrescription(oPrescription);

            return(confirmPrescribeInsert);
        }
コード例 #2
0
        /****** Getting Patient Information  ========>  *****/
        public DataTable GetPatientInfo(string appointId)
        {
            DAL.PrescriptionFormDal dal = new DAL.PrescriptionFormDal();
            DataTable PatientInfoDt     = dal.GetPatientInfo(appointId);

            return(PatientInfoDt);
        }