| 7 | { |
| 8 | public: |
| 9 | FullName() |
| 10 | { |
| 11 | FirstName = "Rustam"; |
| 12 | MiddleName = "Zokirov"; |
| 13 | LastName = "Ibrohimovich"; |
| 14 | } |
| 15 | |
| 16 | FullName(string fName, string mName, string lName) |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected