| 16 | {} |
| 17 | |
| 18 | std::string Customer::toString() const |
| 19 | { |
| 20 | std::string result; |
| 21 | result += m_surname; |
| 22 | result += ' '; |
| 23 | result += m_name; |
| 24 | result += ", "; |
| 25 | result += m_street; |
| 26 | result += ' '; |
| 27 | result += std::to_string(m_streetNumber); |
| 28 | result += ", "; |
| 29 | result += m_city; |
| 30 | return result; |
| 31 | } |