Guest User

Untitled

a guest
Feb 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class TransportFactory:
  2. @staticmethod
  3. def getTransport(type, category):
  4. if type == "car":
  5. return Car().getRide(category)
  6. if type == "bike":
  7. return Bike().getRide(category)
Add Comment
Please, Sign In to add comment