/// <summary>Gets a wallet where the id contains the specified id to match.</summary>
 /// <param name="id">The id to search for.</param>
 /// <returns>A <see cref="T:Horeb.Domain.WalletModule.Wallet" /> that contains the wallet to match the <paramref name="id" />
 public Wallet FindWallet(string id)
 {
     return(_walletDao.Find(id));
 }