| 38 | |
| 39 | public: |
| 40 | Records() |
| 41 | { |
| 42 | name = "Rustam"; |
| 43 | salary = 1234; |
| 44 | date_of_birth = "12.34.5678"; |
| 45 | } |
| 46 | Records(string name1, float salary1, string date_of_birth1) |
| 47 | { |
| 48 | name = name1; |
nothing calls this directly
no outgoing calls
no test coverage detected