Ejemplo n.º 1
0
        /// <summary>
        /// Deletes the Patient from Database based on the UserId.
        /// </summary>
        /// <param name="id"></param>
        /// <returns>Flag as true if deleted successfully else false</returns>
        public bool DeletePatient(int id)
        {
            PatientEditRemove patientRemove = new PatientEditRemove();

            return(patientRemove.RemovePatient(id));
        }