Beispiel #1
0
 public HashTableFormat(Vehicle i_Vehicle, bool i_IsElectric, string i_ClientName, string i_ClientPhone, VehicleType i_VehicleType)
 {
     m_Vehicle     = i_Vehicle;
     m_IsElectric  = i_IsElectric;
     m_Status      = VehicleStatus.repairing;
     m_Person      = new Person(i_ClientName, i_ClientPhone);
     m_VehicleType = i_VehicleType;
 }