Esempio n. 1
0
 public CCar(CPoint сoordinate, int price, int speed, int year) : base(сoordinate, price, speed, year)
 {
 }
Esempio n. 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;
 }
Esempio n. 3
0
 public CPlane(CPoint сoordinate, int price, int speed, int year, int hight) : base(сoordinate, price, speed, year)
 {
     Hight = hight;
 }
Esempio n. 4
0
 public void SetCoordinate(CPoint сoordinate)
 {
     Coordinate = сoordinate;
 }
Esempio n. 5
0
 public CBatMobile(CPoint сoordinate, int price, int speed, int year) : base(сoordinate, price, speed, year)
 {
 }