Skip to content

Instantly share code, notes, and snippets.

@mxmissile
Last active January 4, 2019 16:06
Show Gist options
  • Save mxmissile/4df25560a2643d6a52702a3206675233 to your computer and use it in GitHub Desktop.
Save mxmissile/4df25560a2643d6a52702a3206675233 to your computer and use it in GitHub Desktop.
public class CommandNameHandler : IRequestHandler<source, destination>
{
public CommandNameHandler(IDb db)
{
_db = db;
}
private IDb _db;
// constructors and privates
public async destination Handle(param, token)
{
var submerchantList = _db.SubMerchants.ToList();
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment