Example #1
0
 public CCar(CPoint сoordinate, int price, int speed, int year) : base(сoordinate, price, speed, year)
 {
 }
Example #2
0
 public CShip(CPoint сoordinate, int price, int speed, int year, int count, string port) : base(сoordinate, price, speed, year)
 {
     CountPassengers = count;
     Port            = port;
 }
Example #3
0
 public CPlane(CPoint сoordinate, int price, int speed, int year, int hight) : base(сoordinate, price, speed, year)
 {
     Hight = hight;
 }
Example #4
0
 public void SetCoordinate(CPoint сoordinate)
 {
     Coordinate = сoordinate;
 }
Example #5
0
 public CBatMobile(CPoint сoordinate, int price, int speed, int year) : base(сoordinate, price, speed, year)
 {
 }