-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatrons.h
More file actions
31 lines (27 loc) · 689 Bytes
/
Copy pathpatrons.h
File metadata and controls
31 lines (27 loc) · 689 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
#include "patron.h"
#include "libraryitems.h"
//#include "books.h"
#include <vector>
using namespace std;
class Patrons{
private:
vector <Patron> PatronList;
public:
void AddPatron();
void EditPatron(int i);
void EditPatron2(int id);
void EditPatron3(int id, int sec);
void EditPatron4(int id, int bookId, LibrayItems &items);
void DeletePatron(int id);
int FindPatron(string name);
int FindPatron2(int id);
void PrintPatron(int id);
void PrintPatrons();
void PayFines(int id);
int GetPatronId2(string name);
int GetPatronId3(int id);
bool PatronIdCheck(int id);
int GetBooksOut2(int id);
void LoadPatrons();
void StorePatrons();
};