-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathAddressModel.cs
72 lines (59 loc) · 1.46 KB
/
AddressModel.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using PostSharp.Patterns.Contracts;
using PostSharp.Patterns.Model;
using System;
using System.ComponentModel;
using System.Text;
namespace PostSharp.Samples.Xaml
{
public class AddressModel : ModelBase
{
[DisplayName("Address Line 1")]
[Required]
public string Line1 { get; set; }
[DisplayName("Address Line 2")]
public string Line2 { get; set; }
[Required]
public string Town { get; set; }
public string Country { get; set; }
public DateTime Expiration { get; set; }
[IgnoreAutoChangeNotification]
public TimeSpan Lifetime => DateTime.Now - Expiration;
[SafeForDependencyAnalysis]
public string FullAddress
{
get
{
var stringBuilder = new StringBuilder();
if (Line1 != null)
{
stringBuilder.Append(Line1);
}
if (Line2 != null)
{
if (stringBuilder.Length > 0)
{
stringBuilder.Append("; ");
}
stringBuilder.Append(Line2);
}
if (Town != null)
{
if (stringBuilder.Length > 0)
{
stringBuilder.Append("; ");
}
stringBuilder.Append(Town);
}
if (Country != null)
{
if (stringBuilder.Length > 0)
{
stringBuilder.Append("; ");
}
stringBuilder.Append(Country);
}
return stringBuilder.ToString();
}
}
}
}