edit
This commit is contained in:
@@ -204,6 +204,7 @@ namespace XLAB2
|
||||
public sealed class PsvDocumentLine : ObservableObject
|
||||
{
|
||||
private bool _isBatchSelected;
|
||||
private string _notes;
|
||||
|
||||
public int CardId { get; set; }
|
||||
|
||||
@@ -257,7 +258,23 @@ namespace XLAB2
|
||||
|
||||
public string RejectionReason { get; set; }
|
||||
|
||||
public string Notes { get; set; }
|
||||
public string Notes
|
||||
{
|
||||
get { return _notes; }
|
||||
set
|
||||
{
|
||||
if (SetProperty(ref _notes, value))
|
||||
{
|
||||
OnPropertyChanged("Completeness");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string Completeness
|
||||
{
|
||||
get { return Notes; }
|
||||
set { Notes = value; }
|
||||
}
|
||||
|
||||
public bool IsPendingInsert { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user