public GGeometryPlanetService(IGGeometryPlanetRepository planetGeometryRepo,
                                      IGGeometryPlanetLocalStorageCache planetGeometryCache,
                                      IGDetailPlanetLocalStorageCache planetDetailCache, IGDetailSystemLocalStorageCache systemDetailCache)
        {
            _planetGeometryRepo  = planetGeometryRepo;
            _planetGeometryCache = planetGeometryCache;

            _planetDetailCache = planetDetailCache;
            _systemDetailCache = systemDetailCache;
        }
Пример #2
0
 public GGeometryPlanetLocalStorageCache(IGGeometryPlanetRepository repository)
     : base(repository)
 {
 }