Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Hospital hospital = new Hospital();
            Patien   patien   = new Patien();

            MyDelegate allAnalis = null;
            MyDelegate mrt       = new MyDelegate(hospital.MRT);

            allAnalis += mrt;
            MyDelegate kt = new MyDelegate(hospital.KT);

            allAnalis += kt;
            MyDelegate lor = new MyDelegate(hospital.LOR);

            allAnalis += lor;
            MyDelegate xray = new MyDelegate(hospital.XRAY);

            allAnalis += xray;
            MyDelegate uzi = new MyDelegate(hospital.UZI);

            allAnalis += uzi;
            MyDelegate rh_test = new MyDelegate(hospital.RH_Tests);

            allAnalis += rh_test;

            allAnalis.Invoke(patien);

            patien.info();
        }
Exemplo n.º 2
0
 public void MRT(Patien patien)
 {
     patien.MRT = true;
 }
Exemplo n.º 3
0
 public void RH_Tests(Patien patien)
 {
     patien.RH_Tests = true;
 }
Exemplo n.º 4
0
 public void UZI(Patien patien)
 {
     patien.UZI = true;
 }
Exemplo n.º 5
0
 public void LOR(Patien patien)
 {
     patien.LOR = true;
 }
Exemplo n.º 6
0
 public void XRAY(Patien patien)
 {
     patien.XRAY = true;
 }
Exemplo n.º 7
0
 public void KT(Patien patien)
 {
     patien.KT = true;
 }