Skip to content

Instantly share code, notes, and snippets.

@hurricanepkt
Created October 3, 2012 21:21
Show Gist options
  • Save hurricanepkt/3829922 to your computer and use it in GitHub Desktop.
Save hurricanepkt/3829922 to your computer and use it in GitHub Desktop.
This feels a little WET
private readonly IWrapper _wrapper;
private readonly IRepo _repo;
private readonly IAccountTools _accountTools;
private readonly IPolicyRepository _policyRepository;
private readonly IOpportunityPolicyLookupRepository _opportunityPolicyLookupRepository;
public PolicyPusher(IWrapper wrapper, IRepo repo, IAccountTools accountTools, IPolicyRepository policyRepository, IOpportunityPolicyLookupRepository opportunityPolicyLookupRepository)
{
_wrapper = wrapper;
_repo = repo;
_accountTools = accountTools;
_policyRepository = policyRepository;
_opportunityPolicyLookupRepository = opportunityPolicyLookupRepository;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment