-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAddress.h
35 lines (31 loc) · 906 Bytes
/
Address.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
//=========================================================================================
// Address domain model.
// Contains a personal address info.
//=========================================================================================
#pragma once
#include "Stdafx.h"
namespace vms
{
public ref class Address
{
public:
Address();
string getStreetAddress1();
string getStreetAddress2();
string getCity();
string getState();
string getZip();
string getFullAddress();
void setStreetAddress1(const string streetAddress1);
void setStreetAddress2(const string streetAddress2);
void setCity(const string city);
void setState(const string state);
void setZip(const string zip);
private:
string _streetAddress1;
string _streetAddress2;
string _city;
string _state;
string _zip;
};
}