Exemplo n.º 1
0
        public MediaSearchServiceTests()
        {
            movieDatabaseProxy = Substitute.For <IMovieDatabaseProxy>();
            memoryCacheAdapter = Substitute.For <IMemoryCacheAdapter>();

            sut = new MediaSearchService(movieDatabaseProxy, memoryCacheAdapter);
        }
Exemplo n.º 2
0
 public SearchService(IMovieDatabaseProxy movieDatabaseProxy, ICacheWrapper cacheWrapper)
 {
     this._movieDatabaseProxy = movieDatabaseProxy;
     this._cacheWrapper       = cacheWrapper;
 }
Exemplo n.º 3
0
 public MediaSearchService(IMovieDatabaseProxy movieDatabaseProxy, IMemoryCacheAdapter memoryCache)
 {
     this._movieDatabaseProxy = movieDatabaseProxy;
     this._memoryCache        = memoryCache;
 }