using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Vehicle { class Bike : Vehicle { public Bike(string manufacture, string model, string color, float ec) { Manufacturer = manufacture; Model = model; Color = color; EngineСapacity = ec; } } }