-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddress.cs
49 lines (46 loc) · 1.25 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
47
48
49
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MidProject2
{
class Address
{
private string roadNo;
private string houseNo;
private string city;
private string country;
public Address(string roadNo, string houseNo, string city, string country)
{
this.roadNo = roadNo;
this.houseNo = houseNo;
this.city = city;
this.country = country;
}
public string RoadNo
{
set { this.roadNo = value; }
get { return this.roadNo; }
}
public string HouseNo
{
set { this.houseNo = value; }
get { return this.houseNo; }
}
public string City
{
set { this.city = value; }
get { return this.city; }
}
public string Country
{
set { this.country = value; }
get { return this.country; }
}
public string getAddress()
{
return ("\nRoad No: " + roadNo + "\nHouse No: " + houseNo + "\nCity: " + city + "\nCountry: " + country);
}
}
}