public EmployersOperationsCacheDecorator(IEmployersOperations targetDecorated, ICacheStoreProxy cacheProxy) { this.targetDecorated = targetDecorated; this.cacheProxy = cacheProxy; }
public HomeController(IEmployersOperations employersOperations, IEmployersRepository employersRepository) { this.employersOperations = employersOperations; this.employersRepository = employersRepository; }