-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdresat.h
More file actions
37 lines (30 loc) · 793 Bytes
/
Copy pathAdresat.h
File metadata and controls
37 lines (30 loc) · 793 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
#ifndef ADRESAT_H
#define ADRESAT_H
#include <iostream>
#include "UzytkownikMenedzer.h"
using namespace std;
class Adresat {
int id;
int idUzytkownika;
string imie;
string nazwisko;
string numerTelefonu;
string email;
string adres;
public:
void ustawId(int noweId);
void ustawIdUzytkownika(int noweIdUzytkownika);
void ustawImie(string noweImie);
void ustawNazwisko(string noweNazwisko);
void ustawNumerTelefonu(string nowyNumerTelefonu);
void ustawEmail(string nowyEmail);
void ustawAdres(string nowyAdres);
int pobierzId();
int pobierzIdUzytkownika();
string pobierzImie();
string pobierzNazwisko();
string pobierzNumerTelefonu();
string pobierzEmail();
string pobierzAdres();
};
#endif // ADRESAT_H