-
Notifications
You must be signed in to change notification settings - Fork 0
/
Adresat.h
42 lines (37 loc) · 1.09 KB
/
Adresat.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
33
34
35
36
37
38
39
40
41
42
#pragma once
#include <iostream>
using namespace std;
class Adresat {
int id;
int idUzytkownika;
string imie;
string nazwisko;
string numerTelefonu;
string email;
string adres;
public:
Adresat(int id = 0, int idUzytkownika = 0, string imie = "", string nazwisko = "", string numerTelefonu = "",
string email = "", string adres = "") {
this->id = id;
this->idUzytkownika = idUzytkownika;
this->imie = imie;
this->nazwisko = nazwisko;
this->numerTelefonu = numerTelefonu;
this->email = email;
this->adres = adres;
}
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();
};