//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;
        }
示例#2
0
 public GDetailPlanetLocalStorageCache(IGDetailPlanetRepository repository) : base(repository)
 {
 }