public void TakePhoto(IPhoto phone) { phone.TakePhoto(); }
//public void TakePhoto(Phone phone) //{ // phone.TakePhoto(); //} public void TakePhoto(IPhoto photo) { photo.TakePhoto(); }
public void TakePhoto(IPhoto photoMaker) { photoMaker.TakePhoto(); }