Guest User

Untitled

a guest
Oct 24th, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. public class ITaxiSerivce
  2. {
  3.     void Drive(int carId, Location destination);
  4. }
  5.  
  6. public class IСargoTaxiService
  7. {
  8.     void Drive(int carId, double weight, Location destination);
  9. }
  10.  
  11. public class Taxi
  12. {
  13.     // Plain Data
  14. }
  15.  
  16. public class CargoTaxi
  17. {
  18.     // Plain Data. Maybe even almost the same
  19. }
Advertisement
Add Comment
Please, Sign In to add comment