├── EmployeeRegisterAPI ├── EmployeeRegisterAPI │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── EmployeeRegisterAPI.csproj.CopyComplete │ │ │ │ ├── EmployeeRegisterAPI.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── staticwebassets │ │ │ │ ├── EmployeeRegisterAPI.StaticWebAssets.Manifest.cache │ │ │ │ └── EmployeeRegisterAPI.StaticWebAssets.xml │ │ │ │ ├── EmployeeRegisterAPI.AssemblyInfoInputs.cache │ │ │ │ ├── EmployeeRegisterAPI.genruntimeconfig.cache │ │ │ │ ├── EmployeeRegisterAPI.RazorTargetAssemblyInfo.cache │ │ │ │ ├── EmployeeRegisterAPI.csproj.CoreCompileInputs.cache │ │ │ │ ├── EmployeeRegisterAPI.dll │ │ │ │ ├── EmployeeRegisterAPI.exe │ │ │ │ ├── EmployeeRegisterAPI.pdb │ │ │ │ ├── EmployeeRegisterAPI.assets.cache │ │ │ │ ├── EmployeeRegisterAPI.csprojAssemblyReference.cache │ │ │ │ ├── EmployeeRegisterAPI.AssemblyInfo.cs │ │ │ │ └── EmployeeRegisterAPI.csproj.FileListAbsolute.txt │ │ ├── EmployeeRegisterAPI.csproj.nuget.g.targets │ │ ├── EmployeeRegisterAPI.csproj.nuget.g.props │ │ ├── EmployeeRegisterAPI.csproj.nuget.dgspec.json │ │ └── project.nuget.cache │ ├── Images │ │ ├── Ava-Elliot203152250.jpg │ │ ├── Liam-Hendr200203382.jpg │ │ ├── Mason-Conn200228073.jpg │ │ └── Samantha-M200257109.jpg │ ├── appsettings.Development.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── NuGet.Frameworks.dll │ │ │ ├── SQLitePCLRaw.core.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── EmployeeRegisterAPI.dll │ │ │ ├── EmployeeRegisterAPI.exe │ │ │ ├── EmployeeRegisterAPI.pdb │ │ │ ├── Microsoft.Bcl.HashCode.dll │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── Microsoft.Data.Sqlite.dll │ │ │ ├── System.Runtime.Caching.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── SQLitePCLRaw.nativelibrary.dll │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Composition.Hosting.dll │ │ │ ├── System.Composition.Runtime.dll │ │ │ ├── runtimes │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── sni.dll │ │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ ├── sni.dll │ │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ ├── sni.dll │ │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ └── e_sqlite3.dll │ │ │ ├── alpine-x64 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x64 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x86 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── osx-x64 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.dylib │ │ │ ├── linux-arm64 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-armel │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-musl-x64 │ │ │ │ └── native │ │ │ │ │ └── libe_sqlite3.so │ │ │ ├── win │ │ │ │ └── lib │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ └── System.Runtime.Caching.dll │ │ │ │ │ ├── netcoreapp2.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ │ └── unix │ │ │ │ └── lib │ │ │ │ ├── netcoreapp2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ │ │ └── netcoreapp2.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── System.Composition.Convention.dll │ │ │ ├── System.Composition.TypedParts.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll │ │ │ ├── System.Composition.AttributedModel.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── cs │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ │ ├── es │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── tr │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── zh-Hant │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ │ ├── EmployeeRegisterAPI.runtimeconfig.dev.json │ │ │ ├── EmployeeRegisterAPI.runtimeconfig.json │ │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ │ ├── appsettings.json │ │ │ └── Properties │ │ │ └── launchSettings.json │ ├── WeatherForecast.cs │ ├── appsettings.json │ ├── Models │ │ ├── EmployeeDbContext.cs │ │ └── EmployeeModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── EmployeeRegisterAPI.csproj │ ├── EmployeeRegisterAPI.csproj.user │ ├── Migrations │ │ ├── 20200922120123_InitialCreate.cs │ │ ├── EmployeeDbContextModelSnapshot.cs │ │ └── 20200922120123_InitialCreate.Designer.cs │ ├── Controllers │ │ ├── WeatherForecastController.cs │ │ └── EmployeeController.cs │ └── Startup.cs ├── .vs │ └── EmployeeRegisterAPI │ │ ├── v16 │ │ └── .suo │ │ └── DesignTimeBuild │ │ └── .dtbcache.v2 └── EmployeeRegisterAPI.sln ├── employee-register-client ├── public │ ├── robots.txt │ ├── favicon.ico │ ├── logo192.png │ ├── logo512.png │ ├── img │ │ └── image_placeholder.png │ ├── manifest.json │ └── index.html ├── src │ ├── setupTests.js │ ├── App.js │ ├── App.test.js │ ├── index.js │ ├── App.css │ ├── index.css │ ├── logo.svg │ ├── components │ │ ├── EmployeeList.js │ │ └── Employee.js │ └── serviceWorker.js ├── .gitignore ├── package.json └── README.md └── README.md /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /employee-register-client/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/staticwebassets/EmployeeRegisterAPI.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dc6b188756bbd9ceb5bd02366db827201d40c46c 2 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/staticwebassets/EmployeeRegisterAPI.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | fd5ebddeca0c9e912e5fcbe6f9a06a9e21818090 2 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 59030036d2924c9e693cbf6d077a8aa5ca544903 2 | -------------------------------------------------------------------------------- /employee-register-client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/employee-register-client/public/favicon.ico -------------------------------------------------------------------------------- /employee-register-client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/employee-register-client/public/logo192.png -------------------------------------------------------------------------------- /employee-register-client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/employee-register-client/public/logo512.png -------------------------------------------------------------------------------- /EmployeeRegisterAPI/.vs/EmployeeRegisterAPI/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/.vs/EmployeeRegisterAPI/v16/.suo -------------------------------------------------------------------------------- /employee-register-client/public/img/image_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/employee-register-client/public/img/image_placeholder.png -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Images/Ava-Elliot203152250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/Images/Ava-Elliot203152250.jpg -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Images/Liam-Hendr200203382.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/Images/Liam-Hendr200203382.jpg -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Images/Mason-Conn200228073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/Images/Mason-Conn200228073.jpg -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Images/Samantha-M200257109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/Images/Samantha-M200257109.jpg -------------------------------------------------------------------------------- /EmployeeRegisterAPI/.vs/EmployeeRegisterAPI/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/.vs/EmployeeRegisterAPI/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/SQLitePCLRaw.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/SQLitePCLRaw.core.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Text.Json.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/EmployeeRegisterAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/EmployeeRegisterAPI.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/EmployeeRegisterAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/EmployeeRegisterAPI.exe -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/EmployeeRegisterAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/EmployeeRegisterAPI.pdb -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.exe -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.pdb -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Data.Sqlite.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.assets.cache -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/e_sqlite3.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/e_sqlite3.dll -------------------------------------------------------------------------------- /employee-register-client/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom/extend-expect'; 6 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/SQLitePCLRaw.provider.dynamic_cdecl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/SQLitePCLRaw.provider.dynamic_cdecl.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Sqlite.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/alpine-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/alpine-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-arm/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-arm/native/libe_sqlite3.so -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-x86/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-x86/native/libe_sqlite3.so -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/osx-x64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/osx-x64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /employee-register-client/src/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import './App.css'; 3 | import EmployeeList from './components/EmployeeList'; 4 | 5 | function App() { 6 | return ( 7 |
8 | 9 |
10 | ); 11 | } 12 | 13 | export default App; 14 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-arm64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-arm64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-armel/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-armel/native/libe_sqlite3.so -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-musl-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/linux-musl-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /employee-register-client/src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { render } from '@testing-library/react'; 3 | import App from './App'; 4 | 5 | test('renders learn react link', () => { 6 | const { getByText } = render(); 7 | const linkElement = getByText(/learn react/i); 8 | expect(linkElement).toBeInTheDocument(); 9 | }); 10 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/EmployeeRegisterAPI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Shamseer\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Shamseer\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/EmployeeRegisterAPI.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "3.1.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/EmployeeRegisterAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-Asp.Net-Core-API---Image-Upload-Retrieve-Update-and-Delete-/master/EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace EmployeeRegisterAPI 4 | { 5 | public class WeatherForecast 6 | { 7 | public DateTime Date { get; set; } 8 | 9 | public int TemperatureC { get; set; } 10 | 11 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 12 | 13 | public string Summary { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "ConnectionStrings": { 11 | "DevConnection": "Server =(local)\\sqlexpress; Database=EmployeeDB; Trusted_Connection=True; MultipleActiveResultSets=True;" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /employee-register-client/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "ConnectionStrings": { 11 | "DevConnection": "Server =(local)\\sqlexpress; Database=EmployeeDB; Trusted_Connection=True; MultipleActiveResultSets=True;" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Models/EmployeeDbContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace EmployeeRegisterAPI.Models 8 | { 9 | public class EmployeeDbContext:DbContext 10 | { 11 | public EmployeeDbContext(DbContextOptions options):base(options) 12 | { 13 | 14 | } 15 | 16 | public DbSet Employees { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /employee-register-client/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import * as serviceWorker from './serviceWorker'; 6 | 7 | ReactDOM.render( 8 | 9 | 10 | , 11 | document.getElementById('root') 12 | ); 13 | 14 | // If you want your app to work offline and load faster, you can change 15 | // unregister() to register() below. Note this comes with some pitfalls. 16 | // Learn more about service workers: https://bit.ly/CRA-PWA 17 | serviceWorker.unregister(); 18 | -------------------------------------------------------------------------------- /employee-register-client/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /employee-register-client/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | pointer-events: none; 8 | } 9 | 10 | @media (prefers-reduced-motion: no-preference) { 11 | .App-logo { 12 | animation: App-logo-spin infinite 20s linear; 13 | } 14 | } 15 | 16 | .App-header { 17 | background-color: #282c34; 18 | min-height: 100vh; 19 | display: flex; 20 | flex-direction: column; 21 | align-items: center; 22 | justify-content: center; 23 | font-size: calc(10px + 2vmin); 24 | color: white; 25 | } 26 | 27 | .App-link { 28 | color: #61dafb; 29 | } 30 | 31 | @keyframes App-logo-spin { 32 | from { 33 | transform: rotate(0deg); 34 | } 35 | to { 36 | transform: rotate(360deg); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace EmployeeRegisterAPI 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /employee-register-client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "employee-register-client", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^4.2.4", 7 | "@testing-library/react": "^9.3.2", 8 | "@testing-library/user-event": "^7.1.2", 9 | "axios": "^0.20.0", 10 | "react": "^16.13.1", 11 | "react-dom": "^16.13.1", 12 | "react-scripts": "3.4.3" 13 | }, 14 | "scripts": { 15 | "start": "react-scripts start", 16 | "build": "react-scripts build", 17 | "test": "react-scripts test", 18 | "eject": "react-scripts eject" 19 | }, 20 | "eslintConfig": { 21 | "extends": "react-app" 22 | }, 23 | "browserslist": { 24 | "production": [ 25 | ">0.2%", 26 | "not dead", 27 | "not op_mini all" 28 | ], 29 | "development": [ 30 | "last 1 chrome version", 31 | "last 1 firefox version", 32 | "last 1 safari version" 33 | ] 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:53747", 8 | "sslPort": 44353 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "weatherforecast", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "EmployeeRegisterAPI": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "weatherforecast", 24 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:53747", 8 | "sslPort": 44353 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "weatherforecast", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "EmployeeRegisterAPI": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "weatherforecast", 24 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/EmployeeRegisterAPI.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | all 14 | runtime; build; native; contentfiles; analyzers; buildtransitive 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Models/EmployeeModel.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Http; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.ComponentModel.DataAnnotations; 5 | using System.ComponentModel.DataAnnotations.Schema; 6 | using System.Linq; 7 | using System.Threading.Tasks; 8 | 9 | namespace EmployeeRegisterAPI.Models 10 | { 11 | public class EmployeeModel 12 | { 13 | [Key] 14 | public int EmployeeID { get; set; } 15 | 16 | [Column(TypeName ="nvarchar(50)")] 17 | public string EmployeeName { get; set; } 18 | 19 | [Column(TypeName = "nvarchar(50)")] 20 | public string Occupation { get; set; } 21 | 22 | [Column(TypeName = "nvarchar(100)")] 23 | public string ImageName { get; set; } 24 | 25 | [NotMapped] 26 | public IFormFile ImageFile { get; set; } 27 | 28 | [NotMapped] 29 | public string ImageSrc { get; set; } 30 | 31 | //Pascal(EmployeeName) -> Camel EmployeeID ->employeeID 32 | //Camel(employeeName) -> Pascal 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/EmployeeRegisterAPI.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ApiControllerWithContextScaffolder 5 | root/Controller 6 | 600 7 | True 8 | False 9 | True 10 | 11 | EmployeeRegisterAPI.Models.EmployeeDbContext 12 | False 13 | 14 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("EmployeeRegisterAPI")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("EmployeeRegisterAPI")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("EmployeeRegisterAPI")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /employee-register-client/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: 'Roboto', sans-serif; 4 | -webkit-font-smoothing: antialiased; 5 | -moz-osx-font-smoothing: grayscale; 6 | } 7 | 8 | code { 9 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 10 | monospace; 11 | } 12 | 13 | .invalid-field{ 14 | border-color: #dc3545; 15 | color: #dc3545; 16 | background-color: #fff; 17 | } 18 | 19 | table div.card { 20 | align-items: center; 21 | border: none; 22 | transition: transform 0.2s; 23 | } 24 | table div.card:hover { 25 | cursor: pointer; 26 | transform: scale(1.05); 27 | box-shadow: 0 0 10px #333; 28 | z-index: 10; 29 | } 30 | 31 | table div.card:hover button.delete-button { 32 | visibility: visible; 33 | 34 | } 35 | 36 | table div.card-body { 37 | text-align: center; 38 | } 39 | 40 | table div.card img { 41 | width: 175px; 42 | height: 175px; 43 | margin: 30px; 44 | } 45 | 46 | table div.card .delete-button { 47 | visibility: hidden; 48 | } 49 | 50 | table tr td:not(:nth-child(3)){ 51 | border-right: 1px solid #00000020; 52 | 53 | } 54 | 55 | table tr:not(:last-child) td{ 56 | border-bottom: 1px solid #00000020; 57 | } 58 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29911.84 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeRegisterAPI", "EmployeeRegisterAPI\EmployeeRegisterAPI.csproj", "{F2A6B205-798F-4671-913C-5A3C586EB723}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F2A6B205-798F-4671-913C-5A3C586EB723}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F2A6B205-798F-4671-913C-5A3C586EB723}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F2A6B205-798F-4671-913C-5A3C586EB723}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F2A6B205-798F-4671-913C-5A3C586EB723}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {C24293A4-C8CE-4702-AD2C-96606235B2FD} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Migrations/20200922120123_InitialCreate.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | namespace EmployeeRegisterAPI.Migrations 4 | { 5 | public partial class InitialCreate : Migration 6 | { 7 | protected override void Up(MigrationBuilder migrationBuilder) 8 | { 9 | migrationBuilder.CreateTable( 10 | name: "Employees", 11 | columns: table => new 12 | { 13 | EmployeeID = table.Column(nullable: false) 14 | .Annotation("SqlServer:Identity", "1, 1"), 15 | EmployeeName = table.Column(type: "nvarchar(50)", nullable: true), 16 | Occupation = table.Column(type: "nvarchar(50)", nullable: true), 17 | ImageName = table.Column(type: "nvarchar(100)", nullable: true) 18 | }, 19 | constraints: table => 20 | { 21 | table.PrimaryKey("PK_Employees", x => x.EmployeeID); 22 | }); 23 | } 24 | 25 | protected override void Down(MigrationBuilder migrationBuilder) 26 | { 27 | migrationBuilder.DropTable( 28 | name: "Employees"); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | using Microsoft.Extensions.Logging; 7 | 8 | namespace EmployeeRegisterAPI.Controllers 9 | { 10 | [ApiController] 11 | [Route("[controller]")] 12 | public class WeatherForecastController : ControllerBase 13 | { 14 | private static readonly string[] Summaries = new[] 15 | { 16 | "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" 17 | }; 18 | 19 | private readonly ILogger _logger; 20 | 21 | public WeatherForecastController(ILogger logger) 22 | { 23 | _logger = logger; 24 | } 25 | 26 | [HttpGet] 27 | public IEnumerable Get() 28 | { 29 | var rng = new Random(); 30 | return Enumerable.Range(1, 5).Select(index => new WeatherForecast 31 | { 32 | Date = DateTime.Now.AddDays(index), 33 | TemperatureC = rng.Next(-20, 55), 34 | Summary = Summaries[rng.Next(Summaries.Length)] 35 | }) 36 | .ToArray(); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Migrations/EmployeeDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- 1 | // 2 | using EmployeeRegisterAPI.Models; 3 | using Microsoft.EntityFrameworkCore; 4 | using Microsoft.EntityFrameworkCore.Infrastructure; 5 | using Microsoft.EntityFrameworkCore.Metadata; 6 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 7 | 8 | namespace EmployeeRegisterAPI.Migrations 9 | { 10 | [DbContext(typeof(EmployeeDbContext))] 11 | partial class EmployeeDbContextModelSnapshot : ModelSnapshot 12 | { 13 | protected override void BuildModel(ModelBuilder modelBuilder) 14 | { 15 | #pragma warning disable 612, 618 16 | modelBuilder 17 | .HasAnnotation("ProductVersion", "3.1.8") 18 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 19 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 20 | 21 | modelBuilder.Entity("EmployeeRegisterAPI.Models.EmployeeModel", b => 22 | { 23 | b.Property("EmployeeID") 24 | .ValueGeneratedOnAdd() 25 | .HasColumnType("int") 26 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 27 | 28 | b.Property("EmployeeName") 29 | .HasColumnType("nvarchar(50)"); 30 | 31 | b.Property("ImageName") 32 | .HasColumnType("nvarchar(100)"); 33 | 34 | b.Property("Occupation") 35 | .HasColumnType("nvarchar(50)"); 36 | 37 | b.HasKey("EmployeeID"); 38 | 39 | b.ToTable("Employees"); 40 | }); 41 | #pragma warning restore 612, 618 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Migrations/20200922120123_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using EmployeeRegisterAPI.Models; 3 | using Microsoft.EntityFrameworkCore; 4 | using Microsoft.EntityFrameworkCore.Infrastructure; 5 | using Microsoft.EntityFrameworkCore.Metadata; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | 9 | namespace EmployeeRegisterAPI.Migrations 10 | { 11 | [DbContext(typeof(EmployeeDbContext))] 12 | [Migration("20200922120123_InitialCreate")] 13 | partial class InitialCreate 14 | { 15 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 16 | { 17 | #pragma warning disable 612, 618 18 | modelBuilder 19 | .HasAnnotation("ProductVersion", "3.1.8") 20 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 21 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 22 | 23 | modelBuilder.Entity("EmployeeRegisterAPI.Models.EmployeeModel", b => 24 | { 25 | b.Property("EmployeeID") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("int") 28 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 29 | 30 | b.Property("EmployeeName") 31 | .HasColumnType("nvarchar(50)"); 32 | 33 | b.Property("ImageName") 34 | .HasColumnType("nvarchar(100)"); 35 | 36 | b.Property("Occupation") 37 | .HasColumnType("nvarchar(50)"); 38 | 39 | b.HasKey("EmployeeID"); 40 | 41 | b.ToTable("Employees"); 42 | }); 43 | #pragma warning restore 612, 618 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/EmployeeRegisterAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Shamseer\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.5.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | 19 | C:\Users\Shamseer\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.4 20 | C:\Users\Shamseer\.nuget\packages\microsoft.entityframeworkcore.tools\3.1.8 21 | 22 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Startup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using EmployeeRegisterAPI.Models; 7 | using Microsoft.AspNetCore.Builder; 8 | using Microsoft.AspNetCore.Hosting; 9 | using Microsoft.AspNetCore.HttpsPolicy; 10 | using Microsoft.AspNetCore.Mvc; 11 | using Microsoft.CodeAnalysis.Options; 12 | using Microsoft.EntityFrameworkCore; 13 | using Microsoft.Extensions.Configuration; 14 | using Microsoft.Extensions.DependencyInjection; 15 | using Microsoft.Extensions.FileProviders; 16 | using Microsoft.Extensions.Hosting; 17 | using Microsoft.Extensions.Logging; 18 | 19 | namespace EmployeeRegisterAPI 20 | { 21 | public class Startup 22 | { 23 | public Startup(IConfiguration configuration) 24 | { 25 | Configuration = configuration; 26 | } 27 | 28 | public IConfiguration Configuration { get; } 29 | 30 | // This method gets called by the runtime. Use this method to add services to the container. 31 | public void ConfigureServices(IServiceCollection services) 32 | { 33 | services.AddControllers(); 34 | 35 | services.AddDbContext(options => 36 | options.UseSqlServer(Configuration.GetConnectionString("DevConnection"))); 37 | 38 | services.AddCors(); 39 | } 40 | 41 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 42 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 43 | { 44 | app.UseCors(options => options.WithOrigins("http://localhost:3000") 45 | .AllowAnyMethod() 46 | .AllowAnyHeader()); 47 | 48 | if (env.IsDevelopment()) 49 | { 50 | app.UseDeveloperExceptionPage(); 51 | } 52 | 53 | app.UseStaticFiles(new StaticFileOptions 54 | { 55 | FileProvider = new PhysicalFileProvider(Path.Combine(env.ContentRootPath, "Images")), 56 | RequestPath = "/Images" 57 | }); 58 | 59 | app.UseHttpsRedirection(); 60 | 61 | app.UseRouting(); 62 | 63 | app.UseAuthorization(); 64 | 65 | app.UseEndpoints(endpoints => 66 | { 67 | endpoints.MapControllers(); 68 | }); 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React & Asp.Net Core API - Image Upload, Retrieve, Update and Delete 2 | 3 | ## How it works ? 4 | 5 | ### 1. Image Upload 6 | 7 | Video Tutorial : https://youtu.be/ORVShW0Yjaw 8 | 9 | Video Tutorial for Image Upload in React with Asp.Net Core Web API 12 | 13 | ### 2. Image Retrieve, Update and Delete [will be public in next monday] 14 | 15 | Video Tutorial : https://youtu.be/jSO5KJLd5Qk 16 | 17 | Video Tutorial for React JS & Asp.Net Core Web API - Image Upload, Retrieve, Update and Delete 20 | 21 | 22 | | :bar_chart: | List of Tutorials | | :moneybag: | Support Us | 23 | |--------------------------:|:---------------------|---|---------------------:|:-------------------------------------| 24 | | Angular |http://bit.ly/2KQN9xF | |Paypal | https://goo.gl/bPcyXW | 25 | | Asp.Net Core |http://bit.ly/30fPDMg | |Amazon Affiliate | https://geni.us/JDzpE | 26 | | React |http://bit.ly/325temF | | 27 | | Python |http://bit.ly/2ws4utg | | :point_right: | Follow Us | 28 | | Node.js |https://goo.gl/viJcFs | |Website |http://www.codaffection.com | 29 | | Asp.Net MVC |https://goo.gl/gvjUJ7 | |YouTube |https://www.youtube.com/codaffection | 30 | | Flutter |https://bit.ly/3ggmmJz| |Facebook |https://www.facebook.com/codaffection | 31 | | Web API |https://goo.gl/itVayJ | |Twitter |https://twitter.com/CodAffection | 32 | | MEAN Stack |https://goo.gl/YJPPAH | | 33 | | C# Tutorial |https://goo.gl/s1zJxo | | 34 | | Asp.Net WebForm |https://goo.gl/GXC2aJ | | 35 | | C# WinForm |https://goo.gl/vHS9Hd | | 36 | | MS SQL |https://goo.gl/MLYS9e | | 37 | | Crystal Report |https://goo.gl/5Vou7t | | 38 | | CG Exercises in C Program |https://goo.gl/qEWJCs | | 39 | -------------------------------------------------------------------------------- /employee-register-client/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 19 | 20 | 21 | 22 | 31 | React App 32 | 33 | 34 | 35 |
36 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /employee-register-client/src/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /employee-register-client/README.md: -------------------------------------------------------------------------------- 1 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 2 | 3 | ## Available Scripts 4 | 5 | In the project directory, you can run: 6 | 7 | ### `yarn start` 8 | 9 | Runs the app in the development mode.
10 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 11 | 12 | The page will reload if you make edits.
13 | You will also see any lint errors in the console. 14 | 15 | ### `yarn test` 16 | 17 | Launches the test runner in the interactive watch mode.
18 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 19 | 20 | ### `yarn build` 21 | 22 | Builds the app for production to the `build` folder.
23 | It correctly bundles React in production mode and optimizes the build for the best performance. 24 | 25 | The build is minified and the filenames include the hashes.
26 | Your app is ready to be deployed! 27 | 28 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 29 | 30 | ### `yarn eject` 31 | 32 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 33 | 34 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 35 | 36 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 37 | 38 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 39 | 40 | ## Learn More 41 | 42 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 43 | 44 | To learn React, check out the [React documentation](https://reactjs.org/). 45 | 46 | ### Code Splitting 47 | 48 | This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting 49 | 50 | ### Analyzing the Bundle Size 51 | 52 | This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size 53 | 54 | ### Making a Progressive Web App 55 | 56 | This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app 57 | 58 | ### Advanced Configuration 59 | 60 | This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration 61 | 62 | ### Deployment 63 | 64 | This section has moved here: https://facebook.github.io/create-react-app/docs/deployment 65 | 66 | ### `yarn build` fails to minify 67 | 68 | This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify 69 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/EmployeeRegisterAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "F:\\profession\\CodAffection\\React JS\\Image Updload with Asp.Net Core\\project\\EmployeeRegisterAPI\\EmployeeRegisterAPI\\EmployeeRegisterAPI.csproj": {} 5 | }, 6 | "projects": { 7 | "F:\\profession\\CodAffection\\React JS\\Image Updload with Asp.Net Core\\project\\EmployeeRegisterAPI\\EmployeeRegisterAPI\\EmployeeRegisterAPI.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "F:\\profession\\CodAffection\\React JS\\Image Updload with Asp.Net Core\\project\\EmployeeRegisterAPI\\EmployeeRegisterAPI\\EmployeeRegisterAPI.csproj", 11 | "projectName": "EmployeeRegisterAPI", 12 | "projectPath": "F:\\profession\\CodAffection\\React JS\\Image Updload with Asp.Net Core\\project\\EmployeeRegisterAPI\\EmployeeRegisterAPI\\EmployeeRegisterAPI.csproj", 13 | "packagesPath": "C:\\Users\\Shamseer\\.nuget\\packages\\", 14 | "outputPath": "F:\\profession\\CodAffection\\React JS\\Image Updload with Asp.Net Core\\project\\EmployeeRegisterAPI\\EmployeeRegisterAPI\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 18 | ], 19 | "configFilePaths": [ 20 | "C:\\Users\\Shamseer\\AppData\\Roaming\\NuGet\\NuGet.Config", 21 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 22 | ], 23 | "originalTargetFrameworks": [ 24 | "netcoreapp3.1" 25 | ], 26 | "sources": { 27 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 28 | "https://api.nuget.org/v3/index.json": {} 29 | }, 30 | "frameworks": { 31 | "netcoreapp3.1": { 32 | "projectReferences": {} 33 | } 34 | }, 35 | "warningProperties": { 36 | "warnAsError": [ 37 | "NU1605" 38 | ] 39 | } 40 | }, 41 | "frameworks": { 42 | "netcoreapp3.1": { 43 | "dependencies": { 44 | "Microsoft.AspNetCore.Cors": { 45 | "target": "Package", 46 | "version": "[2.2.0, )" 47 | }, 48 | "Microsoft.EntityFrameworkCore": { 49 | "target": "Package", 50 | "version": "[3.1.8, )" 51 | }, 52 | "Microsoft.EntityFrameworkCore.SqlServer": { 53 | "target": "Package", 54 | "version": "[3.1.8, )" 55 | }, 56 | "Microsoft.EntityFrameworkCore.Sqlite": { 57 | "target": "Package", 58 | "version": "[3.1.8, )" 59 | }, 60 | "Microsoft.EntityFrameworkCore.Tools": { 61 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 62 | "suppressParent": "All", 63 | "target": "Package", 64 | "version": "[3.1.8, )" 65 | }, 66 | "Microsoft.VisualStudio.Web.CodeGeneration.Design": { 67 | "target": "Package", 68 | "version": "[3.1.4, )" 69 | } 70 | }, 71 | "imports": [ 72 | "net461", 73 | "net462", 74 | "net47", 75 | "net471", 76 | "net472", 77 | "net48" 78 | ], 79 | "assetTargetFallback": true, 80 | "warn": true, 81 | "frameworkReferences": { 82 | "Microsoft.AspNetCore.App": { 83 | "privateAssets": "none" 84 | }, 85 | "Microsoft.NETCore.App": { 86 | "privateAssets": "all" 87 | } 88 | }, 89 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.200\\RuntimeIdentifierGraph.json" 90 | } 91 | } 92 | } 93 | } 94 | } -------------------------------------------------------------------------------- /employee-register-client/src/components/EmployeeList.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from 'react' 2 | import Employee from './Employee' 3 | import axios from "axios"; 4 | 5 | export default function EmployeeList() { 6 | const [employeeList, setEmployeeList] = useState([]) 7 | const [recordForEdit, setRecordForEdit] = useState(null) 8 | 9 | useEffect(() => { 10 | refreshEmployeeList(); 11 | }, []) 12 | 13 | const employeeAPI = (url = 'https://localhost:44353/api/Employee/') => { 14 | return { 15 | fetchAll: () => axios.get(url), 16 | create: newRecord => axios.post(url, newRecord), 17 | update: (id, updatedRecord) => axios.put(url + id, updatedRecord), 18 | delete: id => axios.delete(url + id) 19 | } 20 | } 21 | 22 | function refreshEmployeeList() { 23 | employeeAPI().fetchAll() 24 | .then(res => { 25 | setEmployeeList(res.data) 26 | }) 27 | .catch(err => console.log(err)) 28 | } 29 | 30 | const addOrEdit = (formData, onSuccess) => { 31 | if (formData.get('employeeID') == "0") 32 | employeeAPI().create(formData) 33 | .then(res => { 34 | onSuccess(); 35 | refreshEmployeeList(); 36 | }) 37 | .catch(err => console.log(err)) 38 | else 39 | employeeAPI().update(formData.get('employeeID'), formData) 40 | .then(res => { 41 | onSuccess(); 42 | refreshEmployeeList(); 43 | }) 44 | .catch(err => console.log(err)) 45 | 46 | } 47 | 48 | const showRecordDetails = data => { 49 | setRecordForEdit(data) 50 | } 51 | 52 | const onDelete = (e, id) => { 53 | e.stopPropagation(); 54 | if (window.confirm('Are you sure to delete this record?')) 55 | employeeAPI().delete(id) 56 | .then(res => refreshEmployeeList()) 57 | .catch(err => console.log(err)) 58 | } 59 | 60 | const imageCard = data => ( 61 |
{ showRecordDetails(data) }}> 62 | 63 |
64 |
{data.employeeName}
65 | {data.occupation}
66 | 69 |
70 |
71 | ) 72 | 73 | 74 | return ( 75 |
76 |
77 |
78 |
79 |

Employee Register

80 |
81 |
82 |
83 |
84 | 88 |
89 |
90 | 91 | 92 | { 93 | //tr > 3 td 94 | [...Array(Math.ceil(employeeList.length / 3))].map((e, i) => 95 | 96 | 97 | 98 | 99 | 100 | ) 101 | } 102 | 103 |
{imageCard(employeeList[3 * i])}{employeeList[3 * i + 1] ? imageCard(employeeList[3 * i + 1]) : null}{employeeList[3 * i + 2] ? imageCard(employeeList[3 * i + 2]) : null}
104 |
105 |
106 | ) 107 | } 108 | -------------------------------------------------------------------------------- /employee-register-client/src/components/Employee.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from 'react' 2 | 3 | const defaultImageSrc = '/img/image_placeholder.png' 4 | 5 | const initialFieldValues = { 6 | employeeID: 0, 7 | employeeName: '', 8 | occupation: '', 9 | imageName: '', 10 | imageSrc: defaultImageSrc, 11 | imageFile: null 12 | } 13 | 14 | export default function Employee(props) { 15 | 16 | const { addOrEdit, recordForEdit } = props 17 | 18 | const [values, setValues] = useState(initialFieldValues) 19 | const [errors, setErrors] = useState({}) 20 | 21 | 22 | useEffect(() => { 23 | if (recordForEdit != null) 24 | setValues(recordForEdit); 25 | }, [recordForEdit]) 26 | 27 | const handleInputChange = e => { 28 | const { name, value } = e.target; 29 | setValues({ 30 | ...values, 31 | [name]: value 32 | }) 33 | } 34 | 35 | const showPreview = e => { 36 | if (e.target.files && e.target.files[0]) { 37 | let imageFile = e.target.files[0]; 38 | const reader = new FileReader(); 39 | reader.onload = x => { 40 | setValues({ 41 | ...values, 42 | imageFile, 43 | imageSrc: x.target.result 44 | }) 45 | } 46 | reader.readAsDataURL(imageFile) 47 | } 48 | else { 49 | setValues({ 50 | ...values, 51 | imageFile: null, 52 | imageSrc: defaultImageSrc 53 | }) 54 | } 55 | } 56 | 57 | const validate = () => { 58 | let temp = {} 59 | temp.employeeName = values.employeeName == "" ? false : true; 60 | temp.imageSrc = values.imageSrc == defaultImageSrc ? false : true; 61 | setErrors(temp) 62 | return Object.values(temp).every(x => x == true) 63 | } 64 | 65 | const resetForm = () => { 66 | setValues(initialFieldValues) 67 | document.getElementById('image-uploader').value = null; 68 | setErrors({}) 69 | } 70 | 71 | const handleFormSubmit = e => { 72 | e.preventDefault() 73 | if (validate()) { 74 | const formData = new FormData() 75 | formData.append('employeeID', values.employeeID) 76 | formData.append('employeeName', values.employeeName) 77 | formData.append('occupation', values.occupation) 78 | formData.append('imageName', values.imageName) 79 | formData.append('imageFile', values.imageFile) 80 | addOrEdit(formData, resetForm) 81 | } 82 | } 83 | 84 | const applyErrorClass = field => ((field in errors && errors[field] == false) ? ' invalid-field' : '') 85 | 86 | return ( 87 | <> 88 |
89 |

An Employee

90 |
91 |
92 |
93 | 94 |
95 |
96 | 98 |
99 |
100 | 103 |
104 |
105 | 108 |
109 |
110 | 111 |
112 |
113 |
114 |
115 | 116 | ) 117 | } 118 | -------------------------------------------------------------------------------- /employee-register-client/src/serviceWorker.js: -------------------------------------------------------------------------------- 1 | // This optional code is used to register a service worker. 2 | // register() is not called by default. 3 | 4 | // This lets the app load faster on subsequent visits in production, and gives 5 | // it offline capabilities. However, it also means that developers (and users) 6 | // will only see deployed updates on subsequent visits to a page, after all the 7 | // existing tabs open on the page have been closed, since previously cached 8 | // resources are updated in the background. 9 | 10 | // To learn more about the benefits of this model and instructions on how to 11 | // opt-in, read https://bit.ly/CRA-PWA 12 | 13 | const isLocalhost = Boolean( 14 | window.location.hostname === 'localhost' || 15 | // [::1] is the IPv6 localhost address. 16 | window.location.hostname === '[::1]' || 17 | // 127.0.0.0/8 are considered localhost for IPv4. 18 | window.location.hostname.match( 19 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ 20 | ) 21 | ); 22 | 23 | export function register(config) { 24 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { 25 | // The URL constructor is available in all browsers that support SW. 26 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); 27 | if (publicUrl.origin !== window.location.origin) { 28 | // Our service worker won't work if PUBLIC_URL is on a different origin 29 | // from what our page is served on. This might happen if a CDN is used to 30 | // serve assets; see https://github.com/facebook/create-react-app/issues/2374 31 | return; 32 | } 33 | 34 | window.addEventListener('load', () => { 35 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; 36 | 37 | if (isLocalhost) { 38 | // This is running on localhost. Let's check if a service worker still exists or not. 39 | checkValidServiceWorker(swUrl, config); 40 | 41 | // Add some additional logging to localhost, pointing developers to the 42 | // service worker/PWA documentation. 43 | navigator.serviceWorker.ready.then(() => { 44 | console.log( 45 | 'This web app is being served cache-first by a service ' + 46 | 'worker. To learn more, visit https://bit.ly/CRA-PWA' 47 | ); 48 | }); 49 | } else { 50 | // Is not localhost. Just register service worker 51 | registerValidSW(swUrl, config); 52 | } 53 | }); 54 | } 55 | } 56 | 57 | function registerValidSW(swUrl, config) { 58 | navigator.serviceWorker 59 | .register(swUrl) 60 | .then(registration => { 61 | registration.onupdatefound = () => { 62 | const installingWorker = registration.installing; 63 | if (installingWorker == null) { 64 | return; 65 | } 66 | installingWorker.onstatechange = () => { 67 | if (installingWorker.state === 'installed') { 68 | if (navigator.serviceWorker.controller) { 69 | // At this point, the updated precached content has been fetched, 70 | // but the previous service worker will still serve the older 71 | // content until all client tabs are closed. 72 | console.log( 73 | 'New content is available and will be used when all ' + 74 | 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' 75 | ); 76 | 77 | // Execute callback 78 | if (config && config.onUpdate) { 79 | config.onUpdate(registration); 80 | } 81 | } else { 82 | // At this point, everything has been precached. 83 | // It's the perfect time to display a 84 | // "Content is cached for offline use." message. 85 | console.log('Content is cached for offline use.'); 86 | 87 | // Execute callback 88 | if (config && config.onSuccess) { 89 | config.onSuccess(registration); 90 | } 91 | } 92 | } 93 | }; 94 | }; 95 | }) 96 | .catch(error => { 97 | console.error('Error during service worker registration:', error); 98 | }); 99 | } 100 | 101 | function checkValidServiceWorker(swUrl, config) { 102 | // Check if the service worker can be found. If it can't reload the page. 103 | fetch(swUrl, { 104 | headers: { 'Service-Worker': 'script' }, 105 | }) 106 | .then(response => { 107 | // Ensure service worker exists, and that we really are getting a JS file. 108 | const contentType = response.headers.get('content-type'); 109 | if ( 110 | response.status === 404 || 111 | (contentType != null && contentType.indexOf('javascript') === -1) 112 | ) { 113 | // No service worker found. Probably a different app. Reload the page. 114 | navigator.serviceWorker.ready.then(registration => { 115 | registration.unregister().then(() => { 116 | window.location.reload(); 117 | }); 118 | }); 119 | } else { 120 | // Service worker found. Proceed as normal. 121 | registerValidSW(swUrl, config); 122 | } 123 | }) 124 | .catch(() => { 125 | console.log( 126 | 'No internet connection found. App is running in offline mode.' 127 | ); 128 | }); 129 | } 130 | 131 | export function unregister() { 132 | if ('serviceWorker' in navigator) { 133 | navigator.serviceWorker.ready 134 | .then(registration => { 135 | registration.unregister(); 136 | }) 137 | .catch(error => { 138 | console.error(error.message); 139 | }); 140 | } 141 | } 142 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/Controllers/EmployeeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Http; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.EntityFrameworkCore; 8 | using EmployeeRegisterAPI.Models; 9 | using System.IO; 10 | using Microsoft.AspNetCore.Hosting; 11 | 12 | namespace EmployeeRegisterAPI.Controllers 13 | { 14 | [Route("api/[controller]")] 15 | [ApiController] 16 | public class EmployeeController : ControllerBase 17 | { 18 | private readonly EmployeeDbContext _context; 19 | private readonly IWebHostEnvironment _hostEnvironment; 20 | 21 | public EmployeeController(EmployeeDbContext context, IWebHostEnvironment hostEnvironment) 22 | { 23 | _context = context; 24 | this._hostEnvironment = hostEnvironment; 25 | } 26 | 27 | // GET: api/Employee 28 | [HttpGet] 29 | public async Task>> GetEmployees() 30 | { 31 | return await _context.Employees 32 | .Select(x => new EmployeeModel() { 33 | EmployeeID = x.EmployeeID, 34 | EmployeeName = x.EmployeeName, 35 | Occupation = x.Occupation, 36 | ImageName = x.ImageName, 37 | ImageSrc = String.Format("{0}://{1}{2}/Images/{3}",Request.Scheme,Request.Host,Request.PathBase,x.ImageName) 38 | }) 39 | .ToListAsync(); 40 | } 41 | 42 | // GET: api/Employee/5 43 | [HttpGet("{id}")] 44 | public async Task> GetEmployeeModel(int id) 45 | { 46 | var employeeModel = await _context.Employees.FindAsync(id); 47 | 48 | if (employeeModel == null) 49 | { 50 | return NotFound(); 51 | } 52 | 53 | return employeeModel; 54 | } 55 | 56 | // PUT: api/Employee/5 57 | // To protect from overposting attacks, enable the specific properties you want to bind to, for 58 | // more details, see https://go.microsoft.com/fwlink/?linkid=2123754. 59 | [HttpPut("{id}")] 60 | public async Task PutEmployeeModel(int id, [FromForm]EmployeeModel employeeModel) 61 | { 62 | if (id != employeeModel.EmployeeID) 63 | { 64 | return BadRequest(); 65 | } 66 | 67 | if(employeeModel.ImageFile != null) 68 | { 69 | DeleteImage(employeeModel.ImageName); 70 | employeeModel.ImageName =await SaveImage(employeeModel.ImageFile); 71 | } 72 | 73 | _context.Entry(employeeModel).State = EntityState.Modified; 74 | 75 | try 76 | { 77 | await _context.SaveChangesAsync(); 78 | } 79 | catch (DbUpdateConcurrencyException) 80 | { 81 | if (!EmployeeModelExists(id)) 82 | { 83 | return NotFound(); 84 | } 85 | else 86 | { 87 | throw; 88 | } 89 | } 90 | 91 | return NoContent(); 92 | } 93 | 94 | // POST: api/Employee 95 | // To protect from overposting attacks, enable the specific properties you want to bind to, for 96 | // more details, see https://go.microsoft.com/fwlink/?linkid=2123754. 97 | [HttpPost] 98 | public async Task> PostEmployeeModel([FromForm]EmployeeModel employeeModel) 99 | { 100 | employeeModel.ImageName =await SaveImage(employeeModel.ImageFile); 101 | _context.Employees.Add(employeeModel); 102 | await _context.SaveChangesAsync(); 103 | 104 | return StatusCode(201); 105 | } 106 | 107 | // DELETE: api/Employee/5 108 | [HttpDelete("{id}")] 109 | public async Task> DeleteEmployeeModel(int id) 110 | { 111 | var employeeModel = await _context.Employees.FindAsync(id); 112 | if (employeeModel == null) 113 | { 114 | return NotFound(); 115 | } 116 | DeleteImage(employeeModel.ImageName); 117 | _context.Employees.Remove(employeeModel); 118 | await _context.SaveChangesAsync(); 119 | 120 | return employeeModel; 121 | } 122 | 123 | private bool EmployeeModelExists(int id) 124 | { 125 | return _context.Employees.Any(e => e.EmployeeID == id); 126 | } 127 | 128 | [NonAction] 129 | public async Task SaveImage(IFormFile imageFile) 130 | { 131 | string imageName = new String(Path.GetFileNameWithoutExtension(imageFile.FileName).Take(10).ToArray()).Replace(' ', '-'); 132 | imageName = imageName + DateTime.Now.ToString("yymmssfff") + Path.GetExtension(imageFile.FileName); 133 | var imagePath = Path.Combine(_hostEnvironment.ContentRootPath, "Images", imageName); 134 | using (var fileStream = new FileStream(imagePath, FileMode.Create)) 135 | { 136 | await imageFile.CopyToAsync(fileStream); 137 | } 138 | return imageName; 139 | } 140 | 141 | [NonAction] 142 | public void DeleteImage(string imageName) 143 | { 144 | var imagePath = Path.Combine(_hostEnvironment.ContentRootPath, "Images", imageName); 145 | if (System.IO.File.Exists(imagePath)) 146 | System.IO.File.Delete(imagePath); 147 | } 148 | } 149 | } 150 | -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "3keFC7Z/WlzddheP0+z2imiuffcmmI+ziqY7xv+ehq80ifUntVA51eeqYpWja7B3/qY146MGhnb1SrXfPj63HA==", 4 | "success": true, 5 | "projectFilePath": "F:\\profession\\CodAffection\\React JS\\Image Updload with Asp.Net Core\\project\\EmployeeRegisterAPI\\EmployeeRegisterAPI\\EmployeeRegisterAPI.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.cors\\2.2.0\\microsoft.aspnetcore.cors.2.2.0.nupkg.sha512", 8 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", 9 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", 10 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", 11 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", 12 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", 13 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\3.1.0\\microsoft.aspnetcore.razor.language.3.1.0.nupkg.sha512", 14 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", 15 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", 16 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", 17 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\2.9.4\\microsoft.codeanalysis.analyzers.2.9.4.nupkg.sha512", 18 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.common\\3.3.1\\microsoft.codeanalysis.common.3.3.1.nupkg.sha512", 19 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.3.1\\microsoft.codeanalysis.csharp.3.3.1.nupkg.sha512", 20 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.3.1\\microsoft.codeanalysis.csharp.workspaces.3.3.1.nupkg.sha512", 21 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.razor\\3.1.0\\microsoft.codeanalysis.razor.3.1.0.nupkg.sha512", 22 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\3.3.1\\microsoft.codeanalysis.workspaces.common.3.3.1.nupkg.sha512", 23 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", 24 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.data.sqlclient\\1.1.3\\microsoft.data.sqlclient.1.1.3.nupkg.sha512", 25 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.data.sqlite.core\\3.1.8\\microsoft.data.sqlite.core.3.1.8.nupkg.sha512", 26 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\3.1.6\\microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512", 27 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.8\\microsoft.entityframeworkcore.3.1.8.nupkg.sha512", 28 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.8\\microsoft.entityframeworkcore.abstractions.3.1.8.nupkg.sha512", 29 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.8\\microsoft.entityframeworkcore.analyzers.3.1.8.nupkg.sha512", 30 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.design\\3.1.8\\microsoft.entityframeworkcore.design.3.1.8.nupkg.sha512", 31 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.8\\microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512", 32 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\3.1.8\\microsoft.entityframeworkcore.sqlite.3.1.8.nupkg.sha512", 33 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\3.1.8\\microsoft.entityframeworkcore.sqlite.core.3.1.8.nupkg.sha512", 34 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.8\\microsoft.entityframeworkcore.sqlserver.3.1.8.nupkg.sha512", 35 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\3.1.8\\microsoft.entityframeworkcore.tools.3.1.8.nupkg.sha512", 36 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.8\\microsoft.extensions.caching.abstractions.3.1.8.nupkg.sha512", 37 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.8\\microsoft.extensions.caching.memory.3.1.8.nupkg.sha512", 38 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.8\\microsoft.extensions.configuration.3.1.8.nupkg.sha512", 39 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.8\\microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512", 40 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.8\\microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512", 41 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.8\\microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512", 42 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.8\\microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512", 43 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.dependencymodel\\3.1.6\\microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512", 44 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", 45 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.logging\\3.1.8\\microsoft.extensions.logging.3.1.8.nupkg.sha512", 46 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.8\\microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512", 47 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.options\\3.1.8\\microsoft.extensions.options.3.1.8.nupkg.sha512", 48 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.8\\microsoft.extensions.primitives.3.1.8.nupkg.sha512", 49 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", 50 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.5.0\\microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512", 51 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.logging\\5.5.0\\microsoft.identitymodel.logging.5.5.0.nupkg.sha512", 52 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.5.0\\microsoft.identitymodel.protocols.5.5.0.nupkg.sha512", 53 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.5.0\\microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512", 54 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.5.0\\microsoft.identitymodel.tokens.5.5.0.nupkg.sha512", 55 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", 56 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", 57 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", 58 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\3.1.4\\microsoft.visualstudio.web.codegeneration.3.1.4.nupkg.sha512", 59 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\3.1.4\\microsoft.visualstudio.web.codegeneration.contracts.3.1.4.nupkg.sha512", 60 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\3.1.4\\microsoft.visualstudio.web.codegeneration.core.3.1.4.nupkg.sha512", 61 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\3.1.4\\microsoft.visualstudio.web.codegeneration.design.3.1.4.nupkg.sha512", 62 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\3.1.4\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.3.1.4.nupkg.sha512", 63 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\3.1.4\\microsoft.visualstudio.web.codegeneration.templating.3.1.4.nupkg.sha512", 64 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\3.1.4\\microsoft.visualstudio.web.codegeneration.utils.3.1.4.nupkg.sha512", 65 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\3.1.4\\microsoft.visualstudio.web.codegenerators.mvc.3.1.4.nupkg.sha512", 66 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", 67 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", 68 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", 69 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", 70 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\nuget.frameworks\\4.7.0\\nuget.frameworks.4.7.0.nupkg.sha512", 71 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 72 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 73 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 74 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", 75 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 76 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", 77 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", 78 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", 79 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 80 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 81 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 82 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", 83 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 84 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 85 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 86 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 87 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 88 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 89 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 90 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 91 | "C:\\Users\\Shamseer\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.2\\sqlitepclraw.bundle_e_sqlite3.2.0.2.nupkg.sha512", 92 | "C:\\Users\\Shamseer\\.nuget\\packages\\sqlitepclraw.core\\2.0.2\\sqlitepclraw.core.2.0.2.nupkg.sha512", 93 | "C:\\Users\\Shamseer\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.2\\sqlitepclraw.lib.e_sqlite3.2.0.2.nupkg.sha512", 94 | "C:\\Users\\Shamseer\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.2\\sqlitepclraw.provider.dynamic_cdecl.2.0.2.nupkg.sha512", 95 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", 96 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", 97 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", 98 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", 99 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", 100 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", 101 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", 102 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", 103 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", 104 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", 105 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", 106 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition\\1.0.31\\system.composition.1.0.31.nupkg.sha512", 107 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.attributedmodel\\1.0.31\\system.composition.attributedmodel.1.0.31.nupkg.sha512", 108 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.convention\\1.0.31\\system.composition.convention.1.0.31.nupkg.sha512", 109 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.hosting\\1.0.31\\system.composition.hosting.1.0.31.nupkg.sha512", 110 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512", 111 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512", 112 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", 113 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", 114 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", 115 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", 116 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", 117 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", 118 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", 119 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", 120 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", 121 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.5.0\\system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512", 122 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", 123 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", 124 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", 125 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", 126 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", 127 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", 128 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", 129 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", 130 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", 131 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", 132 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", 133 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", 134 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", 135 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", 136 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", 137 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", 138 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", 139 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", 140 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", 141 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", 142 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", 143 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", 144 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", 145 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", 146 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", 147 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.2\\system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512", 148 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", 149 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", 150 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", 151 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", 152 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", 153 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", 154 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", 155 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", 156 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", 157 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", 158 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", 159 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", 160 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", 161 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", 162 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", 163 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", 164 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", 165 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", 166 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", 167 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", 168 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", 169 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", 170 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", 171 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", 172 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512", 173 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", 174 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", 175 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", 176 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512", 177 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", 178 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", 179 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", 180 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", 181 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" 182 | ], 183 | "logs": [] 184 | } -------------------------------------------------------------------------------- /EmployeeRegisterAPI/EmployeeRegisterAPI/obj/Debug/netcoreapp3.1/EmployeeRegisterAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\appsettings.Development.json 2 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\appsettings.json 3 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Properties\launchSettings.json 4 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\EmployeeRegisterAPI.exe 5 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.AssemblyInfoInputs.cache 6 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.AssemblyInfo.cs 7 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.RazorTargetAssemblyInfo.cache 8 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\staticwebassets\EmployeeRegisterAPI.StaticWebAssets.Manifest.cache 9 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\staticwebassets\EmployeeRegisterAPI.StaticWebAssets.xml 10 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll 11 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll 12 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll 13 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll 14 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll 15 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll 16 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll 17 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll 18 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll 19 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll 20 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll 21 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll 22 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll 23 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll 24 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll 25 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll 26 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll 27 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.csproj.CopyComplete 28 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Data.SqlClient.dll 29 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll 30 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.SqlServer.dll 31 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Identity.Client.dll 32 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.JsonWebTokens.dll 33 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Logging.dll 34 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.dll 35 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll 36 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Tokens.dll 37 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll 38 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll 39 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.IdentityModel.Tokens.Jwt.dll 40 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Runtime.Caching.dll 41 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll 42 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 43 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 44 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll 45 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll 46 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll 47 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll 48 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll 49 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll 50 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\EmployeeRegisterAPI.deps.json 51 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\EmployeeRegisterAPI.runtimeconfig.json 52 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\EmployeeRegisterAPI.runtimeconfig.dev.json 53 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\EmployeeRegisterAPI.dll 54 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\EmployeeRegisterAPI.pdb 55 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Design.dll 56 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.dll 57 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.pdb 58 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.genruntimeconfig.cache 59 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Data.Sqlite.dll 60 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.DotNet.PlatformAbstractions.dll 61 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Sqlite.dll 62 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyModel.dll 63 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\SQLitePCLRaw.batteries_v2.dll 64 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\SQLitePCLRaw.nativelibrary.dll 65 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\SQLitePCLRaw.core.dll 66 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\SQLitePCLRaw.provider.dynamic_cdecl.dll 67 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Text.Json.dll 68 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\alpine-x64\native\libe_sqlite3.so 69 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\linux-arm\native\libe_sqlite3.so 70 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\linux-arm64\native\libe_sqlite3.so 71 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\linux-armel\native\libe_sqlite3.so 72 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\linux-musl-x64\native\libe_sqlite3.so 73 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\linux-x64\native\libe_sqlite3.so 74 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\linux-x86\native\libe_sqlite3.so 75 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\osx-x64\native\libe_sqlite3.dylib 76 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win-arm\native\e_sqlite3.dll 77 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\e_sqlite3.dll 78 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\e_sqlite3.dll 79 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\e_sqlite3.dll 80 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Razor.Language.dll 81 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.dll 82 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.CSharp.dll 83 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.CSharp.Workspaces.dll 84 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.Razor.dll 85 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.Workspaces.dll 86 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.dll 87 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll 88 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll 89 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\dotnet-aspnet-codegenerator-design.dll 90 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll 91 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll 92 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll 93 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll 94 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\NuGet.Frameworks.dll 95 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Composition.AttributedModel.dll 96 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Composition.Convention.dll 97 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Composition.Hosting.dll 98 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Composition.Runtime.dll 99 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\System.Composition.TypedParts.dll 100 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.resources.dll 101 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.resources.dll 102 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.resources.dll 103 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.resources.dll 104 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.resources.dll 105 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.resources.dll 106 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.resources.dll 107 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.resources.dll 108 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.resources.dll 109 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.resources.dll 110 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.resources.dll 111 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.resources.dll 112 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.resources.dll 113 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.CSharp.resources.dll 114 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.CSharp.resources.dll 115 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.CSharp.resources.dll 116 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.CSharp.resources.dll 117 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.CSharp.resources.dll 118 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.CSharp.resources.dll 119 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.CSharp.resources.dll 120 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.CSharp.resources.dll 121 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll 122 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.CSharp.resources.dll 123 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.CSharp.resources.dll 124 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll 125 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll 126 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 127 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 128 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 129 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 130 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 131 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 132 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 133 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 134 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 135 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 136 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 137 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 138 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 139 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll 140 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.Workspaces.resources.dll 141 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.Workspaces.resources.dll 142 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll 143 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.Workspaces.resources.dll 144 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll 145 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll 146 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll 147 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll 148 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll 149 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll 150 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll 151 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll 152 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.csproj.CoreCompileInputs.cache 153 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.MvcApplicationPartsAssemblyInfo.cache 154 | F:\profession\CodAffection\React JS\Image Updload with Asp.Net Core\project\EmployeeRegisterAPI\EmployeeRegisterAPI\obj\Debug\netcoreapp3.1\EmployeeRegisterAPI.csprojAssemblyReference.cache 155 | --------------------------------------------------------------------------------