public EmployersOperationsCacheDecorator(IEmployersOperations targetDecorated, ICacheStoreProxy cacheProxy)
 {
     this.targetDecorated = targetDecorated;
     this.cacheProxy      = cacheProxy;
 }
示例#2
0
 public HomeController(IEmployersOperations employersOperations, IEmployersRepository employersRepository)
 {
     this.employersOperations = employersOperations;
     this.employersRepository = employersRepository;
 }