Advertisement
slawea

Untitled

Oct 2nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. class IphoneAdapter : Iiphone6
  2. {
  3.     Iiphone7 iphone7 = new Iphone7();
  4.     public void ProtectedFromWater(bool ifprotected)
  5.     {
  6.         iphone7.PhoneIsProtectedFromWater(ifprotected);
  7.     }
  8.  
  9.     public void SizeOfScreen(int inch)
  10.     {
  11.         iphone7.PhoneSizeScreen(5);
  12.     }
  13.  
  14.     public void SpeedWorking(string speed)
  15.     {
  16.         iphone7.SpeedPhoneWorking("Fast");
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement