When book is unavailable, check other accounts (#535)

This commit is contained in:
Mbucari 2023-03-17 14:06:02 -06:00
parent 36076242a7
commit fd16e97632
2 changed files with 51 additions and 32 deletions

View file

@ -25,6 +25,8 @@ namespace DataLayer
Account = account;
}
public override string ToString() => $"{DateAdded:d} {Book}";
public void SetAccount(string account) => Account = account;
public override string ToString() => $"{DateAdded:d} {Book}";
}
}