Revert "Add some address line"

This reverts commit 97dc792773.
This commit is contained in:
2019-07-21 21:54:19 -03:00
parent 97dc792773
commit 1c840a04f5
2 changed files with 8 additions and 13 deletions

View File

@@ -40,11 +40,10 @@ class Customer {
string password;
Vehicle_type vehicle;
string telephone;
string address;
int role;
Customer(string name_, string password_, Vehicle_type vehicle_, string telephone_, int role_, string address_);
Customer(string name_, string password_, Vehicle_type vehicle_, string telephone_, int role);
Customer(int id_, string name_, string password_, Vehicle_type vehicle_,
vector<Park_time> instances, string telephone_, int role_, string address_);
vector<Park_time> instances, string telephone_);
void clock_in(int s_id);
void clock_out(int s_id);
bool parked();