|
|
@ -115,6 +115,11 @@ namespace Model
|
|
|
|
[DataMember]
|
|
|
|
[DataMember]
|
|
|
|
private DateTime date;
|
|
|
|
private DateTime date;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember(Order = 7)]
|
|
|
|
|
|
|
|
public bool IsOpposition { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="Transaction"/> class.
|
|
|
|
/// Initializes a new instance of the <see cref="Transaction"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
@ -131,6 +136,7 @@ namespace Model
|
|
|
|
Id = id;
|
|
|
|
Id = id;
|
|
|
|
InvolvedAccounts = involvedAccounts;
|
|
|
|
InvolvedAccounts = involvedAccounts;
|
|
|
|
Date = date;
|
|
|
|
Date = date;
|
|
|
|
|
|
|
|
IsOpposition = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void ChangeCategory(string newCateg)
|
|
|
|
public void ChangeCategory(string newCateg)
|
|
|
|