private void patientsInfo_Click(object sender, EventArgs e)
        {
            OwnerSeeInformationWindow patientsInfo = new OwnerSeeInformationWindow("Vet patients", _pCode);

            patientsInfo.Show();
        }
        private void clinicInfoButton_Click(object sender, EventArgs e)
        {
            OwnerSeeInformationWindow clinic = new OwnerSeeInformationWindow("Clinic", _pCode);

            clinic.Show();
        }
        private void vetsInfoButton_Click(object sender, EventArgs e)
        {
            OwnerSeeInformationWindow clinic = new OwnerSeeInformationWindow("Vet", _selectedClinic);

            clinic.Show();
        }
示例#4
0
        private void seePetInfo_Click(object sender, EventArgs e)
        {
            OwnerSeeInformationWindow pet = new OwnerSeeInformationWindow("Pet", _pCode);

            pet.Show();
        }