Skip to content

Instantly share code, notes, and snippets.

@joecastelo
Last active July 8, 2020 16:22
Show Gist options
  • Save joecastelo/5b25039649e33b3aa0b9f7f522990787 to your computer and use it in GitHub Desktop.
Save joecastelo/5b25039649e33b3aa0b9f7f522990787 to your computer and use it in GitHub Desktop.
class Patient
{
public string ID { get; set; }
public int Age { get; set; }
public int Priority { get; set; }
public Patient(string iD, int age, int priority)
{
ID = iD;
Age = age;
Priority = priority; //0,1,2,3
}
public void CallPatient()
{
MessageBox.Show(ID + " " + Age + " " + Priority);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment