Ejemplo n.º 1
0
        public DataSet DisplayPatient()
        {
            HealthData hdp = new HealthData();
            DataSet    ds  = new DataSet();

            ds = hdp.DisplayPatient();
            return(ds);
        }
Ejemplo n.º 2
0
        public void InsertPatient(string name, string surname, string email, string gender, DateTime dob, string cor, string username, string password, string nationality, string image)
        {
            HealthData phd = new HealthData();

            phd.InsertPatient(name, surname, email, gender, dob, cor, username, password, nationality, image);
        }