-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatient.h
32 lines (22 loc) · 766 Bytes
/
Patient.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef FINAL_PROJECT_PATIENT_H
#define FINAL_PROJECT_PATIENT_H
#include "Human.h"
#include <vector>
#include "Patient.h"
#include "Hospital.h"
class Patient : public Human {
private:
string Gender;
string Cost;
vector<string>patient_all_ino;
vector<vector<string>> Bill_Info;
public:
string Gender_getter();
void Gender_setter(string gender);
vector<vector<string>> & Bill_Info_getter();
void Bill_Info_setter(vector<string> Bill_Info);
void Show_Bill ();
vector<string> patient_all_ino_getter()const ;
Patient(string id,string name,string last_Name,string phone_number,string user_name,string password,string age, string gender , string dammy2,string dammy,string dammy1 );
};
#endif //FINAL_PROJECT_PATIENT_H