├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── CacheService.csproj ├── CacheService.sln ├── Controllers └── PlatformsController.cs ├── Data ├── IPlatformRepo.cs └── RedisPlatformRepo.cs ├── Models └── Platform.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Usings.cs ├── appsettings.Development.json ├── appsettings.json └── docker-compose.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CacheService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/CacheService.csproj -------------------------------------------------------------------------------- /CacheService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/CacheService.sln -------------------------------------------------------------------------------- /Controllers/PlatformsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/Controllers/PlatformsController.cs -------------------------------------------------------------------------------- /Data/IPlatformRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/Data/IPlatformRepo.cs -------------------------------------------------------------------------------- /Data/RedisPlatformRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/Data/RedisPlatformRepo.cs -------------------------------------------------------------------------------- /Models/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/Models/Platform.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/README.md -------------------------------------------------------------------------------- /Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/Usings.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/appsettings.json -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Redis/HEAD/docker-compose.yaml --------------------------------------------------------------------------------