Ejemplo n.º 1
0
        public EndpointCacheManager(
            HashSet <string> cachableResources,
            IApiViewManager apiViewManager)
        {
            // Validate params and throw

            this.CachableResources = cachableResources;
            this.apiViewManager    = apiViewManager;
            this.resourceCache     = new ConcurrentDictionary <string, GitResponse>();
        }
Ejemplo n.º 2
0
 public ViewController(IApiViewManager gitViewManager)
 {
     this.gitViewManager = gitViewManager;
 }