-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppointment.h
More file actions
52 lines (45 loc) · 1013 Bytes
/
Appointment.h
File metadata and controls
52 lines (45 loc) · 1013 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once
#include"mDate.h"
#include"mTime.h"
#include<iostream>
using namespace std;
class Appointment
{
private:
char* pr_DiseaseType;
int pr_pID;
int pr_dID;
mDate pr_AppDate;
mTime pr_AppTime;
int pr_TokenNumber;
float pr_Fee;
float pr_PaidFee;
bool pr_Status;
public:
Appointment();
Appointment(const char*, int, int, int, int, int, int, int, int, int, float, float);
Appointment(Appointment&);
void SetDiseaseType(const char*);
void SetpID(int);
void SetdID(int);
void SetAppDate(mDate&);
void SetAppTime(mTime&);
void SetAppDate(int, int, int);
void SetAppTime(int, int, int);
void SetTokenNo(int);
void SetFee(float);
void SetPaidFee(float);
void SetStatus(bool);
void AddData();
const char* GetDiseaseType();
int GetpID();
int GetdID();
mDate& GetAppDate();
mTime& GetAppTime();
int GetTokenNo();
float GetFee();
float GetPaidFee();
bool GetStatus();
friend ostream& operator<<(ostream&, Appointment&);
~Appointment();
};