├── .vs └── ServerSideSPA │ ├── v15 │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ └── DesignTimeBuild │ └── .dtbcache ├── ServerSideSPA.App ├── Pages │ ├── _ViewImports.cshtml │ ├── Index.cshtml │ ├── EmployeeData.cshtml.cs │ └── EmployeeData.cshtml ├── obj │ ├── Debug │ │ └── netstandard2.0 │ │ │ ├── ServerSideSPA.App.csproj.CopyComplete │ │ │ ├── Blazor.inputs.txt │ │ │ ├── ServerSideSPA.App.AssemblyInfo.cs │ │ │ ├── _ViewImports.g.cs │ │ │ ├── App.g.i.cs │ │ │ ├── Shared │ │ │ ├── MainLayout.g.i.cs │ │ │ ├── NavMenu.g.i.cs │ │ │ ├── SurveyPrompt.g.i.cs │ │ │ ├── MainLayout.g.cs │ │ │ ├── SurveyPrompt.g.cs │ │ │ └── NavMenu.g.cs │ │ │ ├── _ViewImports.g.i.cs │ │ │ ├── Pages │ │ │ ├── _ViewImports.g.cs │ │ │ ├── _ViewImports.g.i.cs │ │ │ ├── EmployeeData.g.i.cs │ │ │ ├── Index.g.i.cs │ │ │ ├── Index.g.cs │ │ │ └── EmployeeData.g.cs │ │ │ ├── App.g.cs │ │ │ ├── blazor │ │ │ ├── blazor.boot.json │ │ │ ├── bootjson-references.txt │ │ │ ├── embedded.resources.txt │ │ │ ├── inputs.copylocal.txt │ │ │ ├── resolve-dependencies.txt │ │ │ └── resolved.assemblies.txt │ │ │ └── ServerSideSPA.App.csproj.FileListAbsolute.txt │ ├── ServerSideSPA.App.csproj.nuget.g.targets │ └── ServerSideSPA.App.csproj.nuget.g.props ├── wwwroot │ ├── css │ │ ├── open-iconic │ │ │ ├── font │ │ │ │ ├── fonts │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ └── open-iconic.woff │ │ │ │ └── css │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── FONT-LICENSE │ │ └── site.css │ └── index.html ├── bin │ └── Debug │ │ └── netstandard2.0 │ │ ├── ServerSideSPA.App.blazor.config │ │ └── dist │ │ └── _framework │ │ ├── wasm │ │ └── mono.wasm │ │ ├── asmjs │ │ └── mono.js.mem │ │ ├── blazor.boot.json │ │ └── blazor.webassembly.js ├── App.cshtml ├── _ViewImports.cshtml ├── Models │ ├── Cities.cs │ ├── Employee.cs │ └── myTestDBContext.cs ├── Shared │ ├── MainLayout.cshtml │ ├── SurveyPrompt.cshtml │ └── NavMenu.cshtml ├── Program.cs ├── Startup.cs ├── Properties │ └── launchSettings.json ├── ServerSideSPA.App.csproj ├── Services │ └── EmployeeService.cs └── DataAccess │ └── EmployeeDataAccessLayer.cs ├── global.json ├── ServerSideSPA.Server ├── obj │ ├── Debug │ │ └── netcoreapp2.1 │ │ │ ├── ServerSideSPA.Server.csproj.CopyComplete │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── ServerSideSPA.Server.RazorAssemblyInfo.cs │ │ │ ├── ServerSideSPA.Server.AssemblyInfo.cs │ │ │ └── ServerSideSPA.Server.csproj.FileListAbsolute.txt │ ├── ServerSideSPA.Server.csproj.nuget.g.targets │ └── ServerSideSPA.Server.csproj.nuget.g.props ├── bin │ └── Debug │ │ └── netcoreapp2.1 │ │ ├── ServerSideSPA.App.blazor.config │ │ ├── ServerSideSPA.Server.runtimeconfig.json │ │ └── ServerSideSPA.Server.runtimeconfig.dev.json ├── ServerSideSPA.Server.csproj ├── Program.cs ├── Properties │ └── launchSettings.json └── Startup.cs ├── .gitignore ├── README.md └── ServerSideSPA.sln /.vs/ServerSideSPA/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerSideSPA.App/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @layout MainLayout 2 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "2.1.300" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ServerSideSPA.App/obj/Debug/netstandard2.0/ServerSideSPA.App.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerSideSPA.Server/obj/Debug/netcoreapp2.1/ServerSideSPA.Server.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerSideSPA.App/obj/Debug/netstandard2.0/Blazor.inputs.txt: -------------------------------------------------------------------------------- 1 | d3776785ec1c2fd8a3ffa43e9f10e429ddac422d 2 | -------------------------------------------------------------------------------- /ServerSideSPA.Server/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerSideSPA.Server/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ServerSideSPA.Server/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/ServerSideSPA/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Blazor-Server-Side-SPA/HEAD/.vs/ServerSideSPA/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/ServerSideSPA/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Blazor-Server-Side-SPA/HEAD/.vs/ServerSideSPA/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/ServerSideSPA/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Blazor-Server-Side-SPA/HEAD/.vs/ServerSideSPA/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/ServerSideSPA/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Blazor-Server-Side-SPA/HEAD/.vs/ServerSideSPA/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /ServerSideSPA.App/Pages/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |