Question: Write a contact management application in C++ - CRUD (create/read(search)/update/delete) store: name, first, last , address city, zip, phone cell, phone land class UI ->
Write a contact management application in C++ - CRUD (create/read(search)/update/delete) store: name, first, last , address city, zip, phone cell, phone land
class UI -> taking input from the user
class Contact ->holding existing content or older contents
class Contact {
public:
Contact(string first, string& last, Address& a, string& mphone, string&lphone) {
}
};
class Address {
public:
Address(string& address, string& city, string& zip)
}
};
class DB -> taking contact saving it in text file
class DB {
public:
DB() {
}
save(Contact& c);
delete(Contact& c);
update(Contact& c);
Contact search(Contact& c);
};
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
