Skip to content

Instantly share code, notes, and snippets.

@explorer14
Last active May 27, 2018 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save explorer14/89d32c02bef38b37385eac41289585c4 to your computer and use it in GitHub Desktop.
Save explorer14/89d32c02bef38b37385eac41289585c4 to your computer and use it in GitHub Desktop.
public class LoanRequestSenderFilter :
ILoanRequestSenderFilter
{
public async Task SendLoanRequestToRegisteredBanks(
LoanQuoteRequest loanQuoteRequest)
{
var allRegisteredBanks = RegisteredBanks.All();
foreach (var bank in allRegisteredBanks)
{
// perform the bank API call
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment