-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddress.cs
46 lines (34 loc) · 1.12 KB
/
Address.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TrxTesting
{
public class Address : IReadOnlyAddress
{
public Address(string street1, string street2, string subCity, string city, string state, string subState,
string zip, int country)
{
this.Street1 = street1;
this.Street2 = street2;
this.SubCity = subCity;
this.City = city;
this.State = state;
this.SubState = subState;
this.Zip = zip;
this.CountryId = country;
}
public string City { get; }
public int CountryId { get; }
public string State { get; }
public string StateDisplay { get; }
public string StateFullDescription { get; }
public string Street1 { get; }
public string Street2 { get; }
public string SubCity { get; }
public string SubState { get; }
public string Zip { get; }
public string ZipNoClean { get; }
}
}