├── .gitattributes ├── README.md ├── api └── WebApplication1 │ ├── .vs │ └── WebApplication1 │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ └── .suo │ ├── WebApplication1.sln │ └── WebApplication1 │ ├── Controllers │ ├── DepartmentController.cs │ ├── EmployeeController.cs │ └── WeatherForecastController.cs │ ├── Models │ ├── Department.cs │ └── Employee.cs │ ├── Photos │ ├── anonymous.PNG │ └── patrick.PNG │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── WebApplication1.csproj │ ├── WebApplication1.csproj.user │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Data.SqlClient.dll │ │ ├── WebApplication1.deps.json │ │ ├── WebApplication1.dll │ │ ├── WebApplication1.exe │ │ ├── WebApplication1.pdb │ │ ├── WebApplication1.runtimeconfig.dev.json │ │ ├── WebApplication1.runtimeconfig.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netcoreapp2.1 │ │ │ └── System.Data.SqlClient.dll │ │ ├── win-arm64 │ │ └── native │ │ │ └── sni.dll │ │ ├── win-x64 │ │ └── native │ │ │ └── sni.dll │ │ ├── win-x86 │ │ └── native │ │ │ └── sni.dll │ │ └── win │ │ └── lib │ │ └── netcoreapp2.1 │ │ └── System.Data.SqlClient.dll │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── WebApplication1.AssemblyInfo.cs │ │ ├── WebApplication1.AssemblyInfoInputs.cache │ │ ├── WebApplication1.MvcApplicationPartsAssemblyInfo.cache │ │ ├── WebApplication1.RazorTargetAssemblyInfo.cache │ │ ├── WebApplication1.assets.cache │ │ ├── WebApplication1.csproj.AssemblyReference.cache │ │ ├── WebApplication1.csproj.CopyComplete │ │ ├── WebApplication1.csproj.CoreCompileInputs.cache │ │ ├── WebApplication1.csproj.FileListAbsolute.txt │ │ ├── WebApplication1.dll │ │ ├── WebApplication1.genruntimeconfig.cache │ │ ├── WebApplication1.pdb │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── WebApplication1.StaticWebAssets.Manifest.cache │ │ └── WebApplication1.StaticWebAssets.xml │ ├── WebApplication1.csproj.nuget.dgspec.json │ ├── WebApplication1.csproj.nuget.g.props │ ├── WebApplication1.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── ui ├── app.js ├── department.js ├── employee.js ├── home.js ├── index.html └── variables.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vue-Js-ASP-NET-Core-WebAPI 2 | 3 | -------------------------------------------------------------------------------- /api/WebApplication1/.vs/WebApplication1/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/.vs/WebApplication1/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /api/WebApplication1/.vs/WebApplication1/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/.vs/WebApplication1/config/applicationhost.config -------------------------------------------------------------------------------- /api/WebApplication1/.vs/WebApplication1/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/.vs/WebApplication1/v16/.suo -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1.sln -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Controllers/DepartmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Controllers/DepartmentController.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Controllers/EmployeeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Controllers/EmployeeController.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Models/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Models/Department.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Models/Employee.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Photos/anonymous.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Photos/anonymous.PNG -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Photos/patrick.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Photos/patrick.PNG -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Program.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Properties/launchSettings.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/Startup.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/WeatherForecast.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/WebApplication1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/WebApplication1.csproj -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/WebApplication1.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/WebApplication1.csproj.user -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/appsettings.Development.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/appsettings.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.deps.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.exe -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.pdb -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.runtimeconfig.dev.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/WebApplication1.runtimeconfig.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.AssemblyInfo.cs -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dee9a2aee02504fa7cdc7ec740942fa35fde151a 2 | -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 2c6687afab50846fc57a6a61719e78d899c0f356 2 | -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.assets.cache -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4d55c01d48ebd82745ccfca271d8152ecc661232 2 | -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.dll -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | e4d13e9f51147b7a28cd9324def01ca0d58935c4 2 | -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/WebApplication1.pdb -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/staticwebassets/WebApplication1.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/Debug/netcoreapp3.1/staticwebassets/WebApplication1.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.g.props -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/WebApplication1.csproj.nuget.g.targets -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/project.assets.json -------------------------------------------------------------------------------- /api/WebApplication1/WebApplication1/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/api/WebApplication1/WebApplication1/obj/project.nuget.cache -------------------------------------------------------------------------------- /ui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/ui/app.js -------------------------------------------------------------------------------- /ui/department.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/ui/department.js -------------------------------------------------------------------------------- /ui/employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/ui/employee.js -------------------------------------------------------------------------------- /ui/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/ui/home.js -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfEngineer/Vue-Js-ASP-NET-Core-WebAPI/HEAD/ui/variables.js --------------------------------------------------------------------------------