Example #1
0
 public void TakePhoto(IPhoto phone)
 {
     phone.TakePhoto();
 }
        //public void TakePhoto(Phone phone)
        //{
        //    phone.TakePhoto();
        //}

        public void TakePhoto(IPhoto photo)
        {
            photo.TakePhoto();
        }
Example #3
0
 public void TakePhoto(IPhoto photoMaker)
 {
     photoMaker.TakePhoto();
 }