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

            _planetDetailCache = planetDetailCache;
            _systemDetailCache = systemDetailCache;
        }
        //private readonly IGGeometryPlanetBaseDapperRepository _planetBaseDapperGeometryRepo;
        //private readonly IGDetailSystemLocalStorageCache _systemDetailCache;

        public GDetailPlanetService(IGDetailPlanetLocalStorageCache planetDetailCache,
                                    IGDetailPlanetRepository planetDetailRepo, IGGeometryPlanetLocalStorageCache planetGeometryCache,
                                    IPlanetNameToPlanetIdPkCache planetNameSercheCache,
                                    ISystemService systemService)
        {
            _planetDetailCache   = planetDetailCache;
            _planetDetailRepo    = planetDetailRepo;
            _planetGeometryCache = planetGeometryCache;

            _planetNameSercheCache = planetNameSercheCache;
            _systemService         = systemService;
        }