Car.cs 403 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Vehicle
  7. {
  8. class Car : Vehicle
  9. {
  10. public Car(string manufacture, string model, string color, float ec)
  11. {
  12. Manufacturer = manufacture;
  13. Model = model;
  14. Color = color;
  15. EngineСapacity = ec;
  16. }
  17. }
  18. }