forked from dotnet/samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoan.cs
54 lines (47 loc) · 1.32 KB
/
Loan.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace serialization
{
// <Snippet2>
[Serializable()]
// </Snippet2>
// <Snippet1>
public class Loan : INotifyPropertyChanged
{
public double LoanAmount { get; set; }
public double InterestRate { get; set; }
// <Snippet4>
[field:NonSerialized()]
public DateTime TimeLastLoaded { get; set; }
// </Snippet4>
public int Term { get; set; }
private string customer;
public string Customer
{
get { return customer; }
set
{
customer = value;
PropertyChanged?.Invoke(this,
new PropertyChangedEventArgs(nameof(Customer)));
}
}
// <Snippet3>
[field: NonSerialized()]
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
// </Snippet3>
public Loan(double loanAmount,
double interestRate,
int term,
string customer)
{
this.LoanAmount = loanAmount;
this.InterestRate = interestRate;
this.Term = term;
this.customer = customer;
}
}
// </Snippet1>
}