├── EmployeeManagementSystem ├── .vs │ ├── EmployeeManagementSystem │ │ ├── FileContentIndex │ │ │ ├── read.lock │ │ │ ├── 48c9c0ff-1431-4eaf-9cc2-cdb3a772cb57.vsidx │ │ │ ├── 8e6835da-2971-427b-b6bd-c80942890477.vsidx │ │ │ ├── d1b678ae-09c6-4fd6-a01a-7b1a69d9bae5.vsidx │ │ │ └── df6dc3db-d1de-41ae-a2f8-5b18ab350646.vsidx │ │ ├── v17 │ │ │ ├── .suo │ │ │ └── .futdcache.v2 │ │ └── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ └── ProjectEvaluation │ │ ├── employeemanagementsystem.metadata.v7.bin │ │ └── employeemanagementsystem.projects.v7.bin ├── obj │ ├── Debug │ │ └── net7.0 │ │ │ ├── EmployeeManagementSystem.csproj.CopyComplete │ │ │ ├── EmployeeManagementSystem.csproj.BuildWithSkipAnalyzers │ │ │ ├── EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── EmployeeManagementSystem.AssemblyInfoInputs.cache │ │ │ ├── EmployeeManagementSystem.genruntimeconfig.cache │ │ │ ├── EmployeeManagementSystem.csproj.CoreCompileInputs.cache │ │ │ ├── apphost.exe │ │ │ ├── staticwebassets │ │ │ ├── msbuild.build.EmployeeManagementSystem.props │ │ │ ├── msbuild.buildMultiTargeting.EmployeeManagementSystem.props │ │ │ └── msbuild.buildTransitive.EmployeeManagementSystem.props │ │ │ ├── EmployeeManagementSystem.dll │ │ │ ├── EmployeeManagementSystem.pdb │ │ │ ├── ref │ │ │ └── EmployeeManagementSystem.dll │ │ │ ├── refint │ │ │ └── EmployeeManagementSystem.dll │ │ │ ├── EmployeeManagementSystem.assets.cache │ │ │ ├── EmployeeManagementSystem.csproj.AssemblyReference.cache │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── staticwebassets.build.json │ │ │ ├── EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cs │ │ │ ├── EmployeeManagementSystem.GlobalUsings.g.cs │ │ │ ├── EmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── EmployeeManagementSystem.AssemblyInfo.cs │ │ │ └── EmployeeManagementSystem.csproj.FileListAbsolute.txt │ ├── EmployeeManagementSystem.csproj.nuget.g.targets │ ├── EmployeeManagementSystem.csproj.nuget.g.props │ ├── project.nuget.cache │ └── EmployeeManagementSystem.csproj.nuget.dgspec.json ├── bin │ └── Debug │ │ └── net7.0 │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Web.Http.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── System.Text.Json.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── System.Data.SqlClient.dll │ │ ├── EmployeeManagementSystem.dll │ │ ├── EmployeeManagementSystem.exe │ │ ├── EmployeeManagementSystem.pdb │ │ ├── System.Text.Encodings.Web.dll │ │ ├── BLEmployeeManagementSystem.dll │ │ ├── BLEmployeeManagementSystem.pdb │ │ ├── DLEmployeeManagementSystem.dll │ │ ├── DLEmployeeManagementSystem.pdb │ │ ├── System.Diagnostics.EventLog.dll │ │ ├── System.Net.Http.Formatting.dll │ │ ├── appsettings.Development.json │ │ ├── runtimes │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win │ │ │ └── lib │ │ │ │ ├── net7.0 │ │ │ │ ├── System.Diagnostics.EventLog.dll │ │ │ │ └── System.Diagnostics.EventLog.Messages.dll │ │ │ │ └── netcoreapp2.1 │ │ │ │ └── System.Data.SqlClient.dll │ │ ├── browser │ │ │ └── lib │ │ │ │ └── net7.0 │ │ │ │ └── System.Text.Encodings.Web.dll │ │ └── unix │ │ │ └── lib │ │ │ └── netcoreapp2.1 │ │ │ └── System.Data.SqlClient.dll │ │ ├── Microsoft.AspNetCore.OpenApi.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── appsettings.json │ │ ├── EmployeeManagementSystem.runtimeconfig.json │ │ └── BLEmployeeManagementSystem │ │ └── obj │ │ ├── BLEmployeeManagementSystem.csproj.nuget.dgspec.json │ │ └── project.assets.json ├── appsettings.Development.json ├── BLEmployeeManagementSystem │ └── obj │ │ ├── BLEmployeeManagementSystem.csproj.nuget.g.targets │ │ ├── project.nuget.cache │ │ ├── BLEmployeeManagementSystem.csproj.nuget.g.props │ │ ├── BLEmployeeManagementSystem.csproj.nuget.dgspec.json │ │ └── project.assets.json ├── Model │ ├── APIResponse.cs │ └── EmployeeModel.cs ├── appsettings.json ├── Program.cs ├── EmployeeManagementSystem.csproj.user ├── EmployeeManagementSystem.csproj ├── Properties │ └── launchSettings.json ├── EmployeeManagementSystem.sln └── Controllers │ └── EmployeeController.cs ├── BLEmployeeManagementSystem ├── obj │ ├── Debug │ │ └── net7.0 │ │ │ ├── BLEmployeeManagementSystem.csproj.CopyComplete │ │ │ ├── BLEmployeeManagementSystem.csproj.BuildWithSkipAnalyzers │ │ │ ├── BLEmployee.AssemblyInfoInputs.cache │ │ │ ├── BLEmployeeManagementSystem.AssemblyInfoInputs.cache │ │ │ ├── BLEmployeeManagementSystem.csproj.CoreCompileInputs.cache │ │ │ ├── BLEmployee.assets.cache │ │ │ ├── BLEmployeeManagementSystem.dll │ │ │ ├── BLEmployeeManagementSystem.pdb │ │ │ ├── ref │ │ │ └── BLEmployeeManagementSystem.dll │ │ │ ├── refint │ │ │ └── BLEmployeeManagementSystem.dll │ │ │ ├── BLEmployeeManagementSystem.assets.cache │ │ │ ├── BLEmployee.csproj.AssemblyReference.cache │ │ │ ├── BLEmployeeManagementSystem.csproj.AssemblyReference.cache │ │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ │ ├── BLEmployee.GlobalUsings.g.cs │ │ │ ├── BLEmployeeManagementSystem.GlobalUsings.g.cs │ │ │ ├── BLEmployee.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── BLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── BLEmployee.AssemblyInfo.cs │ │ │ ├── BLEmployeeManagementSystem.AssemblyInfo.cs │ │ │ └── BLEmployeeManagementSystem.csproj.FileListAbsolute.txt │ ├── BLEmployee.csproj.nuget.g.targets │ ├── BLEmployeeManagementSystem.csproj.nuget.g.targets │ ├── BLEmployee.csproj.nuget.g.props │ ├── BLEmployeeManagementSystem.csproj.nuget.g.props │ ├── BLEmployee.csproj.nuget.dgspec.json │ ├── project.nuget.cache │ └── BLEmployeeManagementSystem.csproj.nuget.dgspec.json ├── bin │ └── Debug │ │ └── net7.0 │ │ ├── BLEmployeeManagementSystem.dll │ │ ├── BLEmployeeManagementSystem.pdb │ │ ├── DLEmployeeManagementSystem.dll │ │ ├── DLEmployeeManagementSystem.pdb │ │ └── BLEmployeeManagementSystem.deps.json ├── BLEmployeeManagementSystem.csproj └── BLEmployee.cs └── DLEmployeeManagementSystem ├── obj ├── Debug │ └── net7.0 │ │ ├── DLEmployeeManagementSystem.csproj.BuildWithSkipAnalyzers │ │ ├── DLEmployee.AssemblyInfoInputs.cache │ │ ├── DLEmployeeManagementSystem.AssemblyInfoInputs.cache │ │ ├── DLEmployeeManagementSystem.csproj.CoreCompileInputs.cache │ │ ├── DLEmployee.assets.cache │ │ ├── DLEmployeeManagementSystem.dll │ │ ├── DLEmployeeManagementSystem.pdb │ │ ├── ref │ │ └── DLEmployeeManagementSystem.dll │ │ ├── refint │ │ └── DLEmployeeManagementSystem.dll │ │ ├── DLEmployeeManagementSystem.assets.cache │ │ ├── DLEmployee.csproj.AssemblyReference.cache │ │ ├── DLEmployeeManagementSystem.csproj.AssemblyReference.cache │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── DLEmployee.GlobalUsings.g.cs │ │ ├── DLEmployeeManagementSystem.GlobalUsings.g.cs │ │ ├── DLEmployee.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── DLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── DLEmployee.AssemblyInfo.cs │ │ ├── DLEmployeeManagementSystem.AssemblyInfo.cs │ │ └── DLEmployeeManagementSystem.csproj.FileListAbsolute.txt ├── DLEmployee.csproj.nuget.g.targets ├── DLEmployeeManagementSystem.csproj.nuget.g.targets ├── DLEmployee.csproj.nuget.g.props ├── DLEmployeeManagementSystem.csproj.nuget.g.props ├── DLEmployee.csproj.nuget.dgspec.json ├── DLEmployeeManagementSystem.csproj.nuget.dgspec.json └── project.nuget.cache ├── bin └── Debug │ └── net7.0 │ ├── DLEmployeeManagementSystem.dll │ ├── DLEmployeeManagementSystem.pdb │ └── DLEmployeeManagementSystem.deps.json ├── DLEmployeeManagementSystem.csproj ├── DataMembers └── CTEmployee.cs ├── DLEmployee.cs └── DLCommon.cs /EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployee.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b99aabb66f72181667931fba25f2853d8f597c8c 2 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployee.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8fa45b94bd7d281f90f12031795f93523c44fba2 2 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4834575135717e2b11ec6e49f9088328fde75743 2 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 01bf072e94104c9d70309f00abf4a517261d87e4 2 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7a7c0cf19e9bdb3016a94964ca70d3ce621971a6 2 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 14ac2c6c218fa955268a1c6dac26056a60202801 2 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0114c8955a653382f1f88ea0c6f953c5dc5e6bc4 2 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0904b4251113190624f16147a758781f93af30f8 2 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bd16d0f271f9fded06412921f4315c257c61cb69 2 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/obj/Debug/net7.0/apphost.exe -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/System.Web.Http.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/staticwebassets/msbuild.build.EmployeeManagementSystem.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/EmployeeManagementSystem/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/EmployeeManagementSystem/v17/.suo -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/System.Text.Json.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.EmployeeManagementSystem.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployee.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployee.assets.cache -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployee.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployee.assets.cache -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/BLEmployee.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/DLEmployee.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/EmployeeManagementSystem/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/EmployeeManagementSystem/v17/.futdcache.v2 -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/EmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/EmployeeManagementSystem.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/EmployeeManagementSystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/EmployeeManagementSystem.exe -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/EmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/EmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.EmployeeManagementSystem.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.pdb -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/ref/EmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/obj/Debug/net7.0/ref/EmployeeManagementSystem.dll -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/ref/BLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/obj/Debug/net7.0/ref/BLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/ref/DLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/obj/Debug/net7.0/ref/DLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/refint/EmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/obj/Debug/net7.0/refint/EmployeeManagementSystem.dll -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/refint/BLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/obj/Debug/net7.0/refint/BLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/refint/DLEmployeeManagementSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/obj/Debug/net7.0/refint/DLEmployeeManagementSystem.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.assets.cache -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.assets.cache -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.assets.cache -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/EmployeeManagementSystem/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/EmployeeManagementSystem/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployee.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployee.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployee.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployee.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/ProjectEvaluation/employeemanagementsystem.metadata.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/ProjectEvaluation/employeemanagementsystem.metadata.v7.bin -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/ProjectEvaluation/employeemanagementsystem.projects.v7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/ProjectEvaluation/employeemanagementsystem.projects.v7.bin -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/BLEmployeeManagementSystem/obj/BLEmployeeManagementSystem.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] 5 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] 5 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] 5 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/48c9c0ff-1431-4eaf-9cc2-cdb3a772cb57.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/48c9c0ff-1431-4eaf-9cc2-cdb3a772cb57.vsidx -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/8e6835da-2971-427b-b6bd-c80942890477.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/8e6835da-2971-427b-b6bd-c80942890477.vsidx -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/d1b678ae-09c6-4fd6-a01a-7b1a69d9bae5.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/d1b678ae-09c6-4fd6-a01a-7b1a69d9bae5.vsidx -------------------------------------------------------------------------------- /EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/df6dc3db-d1de-41ae-a2f8-5b18ab350646.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbsolutions2008/EmployeeManagementSystem/HEAD/EmployeeManagementSystem/.vs/EmployeeManagementSystem/FileContentIndex/df6dc3db-d1de-41ae-a2f8-5b18ab350646.vsidx -------------------------------------------------------------------------------- /EmployeeManagementSystem/Model/APIResponse.cs: -------------------------------------------------------------------------------- 1 | namespace EmployeeManagementSystem.Model 2 | { 3 | public class APIResponse 4 | { 5 | public string message { set; get; } 6 | public int statusCode { set; get; } 7 | public string dataType { set; get; } 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployee.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployee.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/staticwebassets.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "Hash": "BYms5ZfIqQX9g1RQCI4GXRMkGqNUWoZgpuIKWGMhsi0=", 4 | "Source": "EmployeeManagementSystem", 5 | "BasePath": "_content/EmployeeManagementSystem", 6 | "Mode": "Default", 7 | "ManifestType": "Build", 8 | "ReferencedProjectsConfiguration": [], 9 | "DiscoveryPatterns": [], 10 | "Assets": [] 11 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "DefaultConnection": "Data Source=JBS-C022\\SQLDEVELOPER2019;Initial Catalog=EmployeeManagementSystem;User ID=sa;Password=s@l2o19;TrustServerCertificate=Yes;" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "DefaultConnection": "Data Source=JBS-C022\\SQLDEVELOPER2019;Initial Catalog=EmployeeManagementSystem;User ID=sa;Password=s@l2o19;TrustServerCertificate=Yes;" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/BLEmployeeManagementSystem.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/BLEmployeeManagementSystem.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/DLEmployeeManagementSystem.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/EmployeeManagementSystem.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net7.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "7.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "7.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployee.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net7.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = BLEmployee 11 | build_property.ProjectDir = E:\Atit Sheth\BLEmployee\ 12 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployee.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net7.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = DLEmployee 11 | build_property.ProjectDir = E:\Atit Sheth\DLEmployee\ 12 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/Program.cs: -------------------------------------------------------------------------------- 1 | var builder = WebApplication.CreateBuilder(args); 2 | 3 | // Add services to the container. 4 | 5 | builder.Services.AddControllers(); 6 | // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle 7 | builder.Services.AddEndpointsApiExplorer(); 8 | builder.Services.AddSwaggerGen(); 9 | 10 | var app = builder.Build(); 11 | 12 | // Configure the HTTP request pipeline. 13 | if (app.Environment.IsDevelopment()) 14 | { 15 | app.UseSwagger(); 16 | app.UseSwaggerUI(); 17 | } 18 | 19 | app.UseHttpsRedirection(); 20 | 21 | app.UseAuthorization(); 22 | 23 | app.MapControllers(); 24 | 25 | app.Run(); 26 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net7.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = BLEmployeeManagementSystem 11 | build_property.ProjectDir = E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\ 12 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net7.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = DLEmployeeManagementSystem 11 | build_property.ProjectDir = E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\ 12 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/EmployeeManagementSystem.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IIS Express 5 | MvcControllerEmptyScaffolder 6 | root/Common/MVC/Controller 7 | 8 | 9 | ProjectDebugger 10 | 11 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/Model/EmployeeModel.cs: -------------------------------------------------------------------------------- 1 | using EmployeeManagementSystem.DataAccess.DataMembers; 2 | using System.Xml.Linq; 3 | 4 | namespace EmployeeManagementSystem.Model 5 | { 6 | public class EmployeeModel 7 | { 8 | public EmployeeModel() { } 9 | 10 | public EmployeeModel(CTEmployee objEmployee) 11 | { 12 | Id = objEmployee.Id; 13 | FirstName = objEmployee.FirstName; 14 | MiddleName = objEmployee.MiddleName; 15 | LastName = objEmployee.LastName; 16 | } 17 | 18 | public int Id { get; set; } 19 | public string FirstName { get; set; } 20 | public string MiddleName { get; set; } 21 | public string LastName { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/DLEmployeeManagementSystem.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/EmployeeManagementSystem.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.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: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] 15 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] 16 | 17 | // Generated by the MSBuild WriteCodeFragment class. 18 | 19 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/BLEmployeeManagementSystem/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "0exfdGEIidm8UrbTO+oHU96FquE22iw6PGAaLINn0GW391lNUq3CPnTDQNa5Qph2q6ECii/ClnJJiIqjUauV6Q==", 4 | "success": false, 5 | "projectFilePath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [ 8 | { 9 | "code": "NU1104", 10 | "level": "Error", 11 | "message": "Unable to find project 'E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj'. Check that the project reference is valid and that the project file exists.", 12 | "libraryId": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj", 13 | "targetGraphs": [ 14 | "net7.0" 15 | ] 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/EmployeeManagementSystem.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net7.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/DataMembers/CTEmployee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace EmployeeManagementSystem.DataAccess.DataMembers 8 | { 9 | public class CTEmployee : CSQLResult 10 | { 11 | public CTEmployee() 12 | { 13 | Id = 0; 14 | FirstName = ""; 15 | MiddleName = ""; 16 | LastName = ""; 17 | } 18 | public int Id { get; set; } 19 | public string FirstName { get; set; } 20 | public string MiddleName { get; set; } 21 | public string LastName { get; set; } 22 | } 23 | public class CSQLResult 24 | { 25 | /* Store the SQL output */ 26 | public CSQLResult() 27 | { 28 | Success = false; 29 | Message = ""; 30 | } 31 | public Boolean Success { get; set; } 32 | public string Message { get; set; } 33 | 34 | } 35 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net7.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = true 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = EmployeeManagementSystem 11 | build_property.RootNamespace = EmployeeManagementSystem 12 | build_property.ProjectDir = E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\ 13 | build_property.RazorLangVersion = 7.0 14 | build_property.SupportLocalizedComponentNames = 15 | build_property.GenerateRazorMetadataSourceChecksumAttributes = 16 | build_property.MSBuildProjectDirectory = E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem 17 | build_property._RazorSourceGeneratorDebug = 18 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployee.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("BLEmployee")] 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("BLEmployee")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("BLEmployee")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployee.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("DLEmployee")] 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("DLEmployee")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DLEmployee")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.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("EmployeeManagementSystem")] 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("EmployeeManagementSystem")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("EmployeeManagementSystem")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.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("BLEmployeeManagementSystem")] 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("BLEmployeeManagementSystem")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("BLEmployeeManagementSystem")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.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("DLEmployeeManagementSystem")] 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("DLEmployeeManagementSystem")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DLEmployeeManagementSystem")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/BLEmployee.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\JBS-\.nuget\packages\ 9 | PackageReference 10 | 6.6.0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/DLEmployee.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\JBS-\.nuget\packages\ 9 | PackageReference 10 | 6.6.0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/BLEmployeeManagementSystem.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\JBS-\.nuget\packages\ 9 | PackageReference 10 | 6.6.0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/DLEmployeeManagementSystem.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\JBS-\.nuget\packages\ 9 | PackageReference 10 | 6.6.0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/BLEmployeeManagementSystem/obj/BLEmployeeManagementSystem.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | False 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\JBS-\.nuget\packages\ 9 | PackageReference 10 | 6.6.0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:21316", 8 | "sslPort": 44315 9 | } 10 | }, 11 | "profiles": { 12 | "http": { 13 | "commandName": "Project", 14 | "dotnetRunMessages": true, 15 | "launchBrowser": true, 16 | "launchUrl": "swagger", 17 | "applicationUrl": "http://localhost:5239", 18 | "environmentVariables": { 19 | "ASPNETCORE_ENVIRONMENT": "Development" 20 | } 21 | }, 22 | "https": { 23 | "commandName": "Project", 24 | "dotnetRunMessages": true, 25 | "launchBrowser": true, 26 | "launchUrl": "swagger", 27 | "applicationUrl": "https://localhost:7035;http://localhost:5239", 28 | "environmentVariables": { 29 | "ASPNETCORE_ENVIRONMENT": "Development" 30 | } 31 | }, 32 | "IIS Express": { 33 | "commandName": "IISExpress", 34 | "launchBrowser": true, 35 | "launchUrl": "swagger", 36 | "environmentVariables": { 37 | "ASPNETCORE_ENVIRONMENT": "Development" 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/BLEmployee.cs: -------------------------------------------------------------------------------- 1 | 2 | using DLEmployeeManagementSystem; 3 | using EmployeeManagementSystem.DataAccess; 4 | using EmployeeManagementSystem.DataAccess.DataMembers; 5 | 6 | namespace BLEmployeeManagementSystem 7 | { 8 | public class BLEmployee 9 | { 10 | 11 | public static List EmployeeList() 12 | { 13 | //Get the all employee list 14 | var oResult = DLEmployee.EmployeeList().ToList(); 15 | return oResult.ToList(); 16 | 17 | } 18 | public static CSQLResult EmployeeSave(int iId, string sFirstName, string sMiddleName, string sLastName) 19 | { 20 | //Save the employee 21 | CSQLResult oResult = new CSQLResult(); 22 | try 23 | { 24 | oResult = DLEmployee.EmployeeSave(iId, sFirstName, sMiddleName, sLastName); 25 | } 26 | catch (Exception ex) 27 | { 28 | oResult.Message = ex.Message; 29 | } 30 | return oResult; 31 | } 32 | 33 | public static CTEmployee EmployeeGet(int iId) 34 | { 35 | //Get the employee 36 | var oResult = DLEmployee.EmployeeGet(iId); 37 | return oResult; 38 | } 39 | public static CSQLResult EmployeeDelete(int iId) 40 | { 41 | //Save the employee 42 | CSQLResult oResult = new CSQLResult(); 43 | try 44 | { 45 | oResult = DLEmployee.EmployeeDelete(iId); 46 | } 47 | catch (Exception ex) 48 | { 49 | oResult.Message = ex.Message; 50 | } 51 | return oResult; 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/BLEmployee.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "E:\\Atit Sheth\\BLEmployee\\BLEmployee.csproj": {} 5 | }, 6 | "projects": { 7 | "E:\\Atit Sheth\\BLEmployee\\BLEmployee.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "E:\\Atit Sheth\\BLEmployee\\BLEmployee.csproj", 11 | "projectName": "BLEmployee", 12 | "projectPath": "E:\\Atit Sheth\\BLEmployee\\BLEmployee.csproj", 13 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 14 | "outputPath": "E:\\Atit Sheth\\BLEmployee\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net7.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net7.0": { 29 | "targetAlias": "net7.0", 30 | "projectReferences": {} 31 | } 32 | }, 33 | "warningProperties": { 34 | "warnAsError": [ 35 | "NU1605" 36 | ] 37 | } 38 | }, 39 | "frameworks": { 40 | "net7.0": { 41 | "targetAlias": "net7.0", 42 | "imports": [ 43 | "net461", 44 | "net462", 45 | "net47", 46 | "net471", 47 | "net472", 48 | "net48", 49 | "net481" 50 | ], 51 | "assetTargetFallback": true, 52 | "warn": true, 53 | "frameworkReferences": { 54 | "Microsoft.NETCore.App": { 55 | "privateAssets": "all" 56 | } 57 | }, 58 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 59 | } 60 | } 61 | } 62 | } 63 | } -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/DLEmployee.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "E:\\Atit Sheth\\DLEmployee\\DLEmployee.csproj": {} 5 | }, 6 | "projects": { 7 | "E:\\Atit Sheth\\DLEmployee\\DLEmployee.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "E:\\Atit Sheth\\DLEmployee\\DLEmployee.csproj", 11 | "projectName": "DLEmployee", 12 | "projectPath": "E:\\Atit Sheth\\DLEmployee\\DLEmployee.csproj", 13 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 14 | "outputPath": "E:\\Atit Sheth\\DLEmployee\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net7.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net7.0": { 29 | "targetAlias": "net7.0", 30 | "projectReferences": {} 31 | } 32 | }, 33 | "warningProperties": { 34 | "warnAsError": [ 35 | "NU1605" 36 | ] 37 | } 38 | }, 39 | "frameworks": { 40 | "net7.0": { 41 | "targetAlias": "net7.0", 42 | "imports": [ 43 | "net461", 44 | "net462", 45 | "net47", 46 | "net471", 47 | "net472", 48 | "net48", 49 | "net481" 50 | ], 51 | "assetTargetFallback": true, 52 | "warn": true, 53 | "frameworkReferences": { 54 | "Microsoft.NETCore.App": { 55 | "privateAssets": "all" 56 | } 57 | }, 58 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 59 | } 60 | } 61 | } 62 | } 63 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/EmployeeManagementSystem.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\JBS-\.nuget\packages\ 9 | PackageReference 10 | 6.6.0 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | C:\Users\JBS-\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 21 | 22 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/EmployeeManagementSystem.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.6.33829.357 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EmployeeManagementSystem", "EmployeeManagementSystem.csproj", "{8C368691-68F3-43BF-80E7-E615343DE8A0}" 7 | EndProject 8 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BLEmployeeManagementSystem", "..\BLEmployeeManagementSystem\BLEmployeeManagementSystem.csproj", "{2E1488C9-6A3F-41E1-B7DE-D93CF3754EE8}" 9 | EndProject 10 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DLEmployeeManagementSystem", "..\DLEmployeeManagementSystem\DLEmployeeManagementSystem.csproj", "{BD563240-79DC-4B4E-A482-C5ABC0B43802}" 11 | EndProject 12 | Global 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 | Debug|Any CPU = Debug|Any CPU 15 | Release|Any CPU = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 18 | {8C368691-68F3-43BF-80E7-E615343DE8A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 | {8C368691-68F3-43BF-80E7-E615343DE8A0}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 | {8C368691-68F3-43BF-80E7-E615343DE8A0}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {8C368691-68F3-43BF-80E7-E615343DE8A0}.Release|Any CPU.Build.0 = Release|Any CPU 22 | {2E1488C9-6A3F-41E1-B7DE-D93CF3754EE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 23 | {2E1488C9-6A3F-41E1-B7DE-D93CF3754EE8}.Debug|Any CPU.Build.0 = Debug|Any CPU 24 | {2E1488C9-6A3F-41E1-B7DE-D93CF3754EE8}.Release|Any CPU.ActiveCfg = Release|Any CPU 25 | {2E1488C9-6A3F-41E1-B7DE-D93CF3754EE8}.Release|Any CPU.Build.0 = Release|Any CPU 26 | {BD563240-79DC-4B4E-A482-C5ABC0B43802}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 27 | {BD563240-79DC-4B4E-A482-C5ABC0B43802}.Debug|Any CPU.Build.0 = Debug|Any CPU 28 | {BD563240-79DC-4B4E-A482-C5ABC0B43802}.Release|Any CPU.ActiveCfg = Release|Any CPU 29 | {BD563240-79DC-4B4E-A482-C5ABC0B43802}.Release|Any CPU.Build.0 = Release|Any CPU 30 | EndGlobalSection 31 | GlobalSection(SolutionProperties) = preSolution 32 | HideSolutionNode = FALSE 33 | EndGlobalSection 34 | GlobalSection(ExtensibilityGlobals) = postSolution 35 | SolutionGuid = {674423B5-8245-4D54-88F4-67057E86819D} 36 | EndGlobalSection 37 | EndGlobal 38 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/BLEmployeeManagementSystem/obj/BLEmployeeManagementSystem.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj": {} 5 | }, 6 | "projects": { 7 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 11 | "projectName": "BLEmployeeManagementSystem", 12 | "projectPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 13 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 14 | "outputPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net7.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net7.0": { 29 | "targetAlias": "net7.0", 30 | "projectReferences": { 31 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj": { 32 | "projectPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj" 33 | } 34 | } 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "net7.0": { 45 | "targetAlias": "net7.0", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "frameworkReferences": { 58 | "Microsoft.NETCore.App": { 59 | "privateAssets": "all" 60 | } 61 | }, 62 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } 67 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem/obj/BLEmployeeManagementSystem.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj": {} 5 | }, 6 | "projects": { 7 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 11 | "projectName": "BLEmployeeManagementSystem", 12 | "projectPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 13 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 14 | "outputPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net7.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net7.0": { 29 | "targetAlias": "net7.0", 30 | "projectReferences": { 31 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj": { 32 | "projectPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj" 33 | } 34 | } 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "net7.0": { 45 | "targetAlias": "net7.0", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "frameworkReferences": { 58 | "Microsoft.NETCore.App": { 59 | "privateAssets": "all" 60 | } 61 | }, 62 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 63 | } 64 | } 65 | } 66 | } 67 | } -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/DLEmployeeManagementSystem.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj": {} 5 | }, 6 | "projects": { 7 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj", 11 | "projectName": "DLEmployeeManagementSystem", 12 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj", 13 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 14 | "outputPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net7.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net7.0": { 29 | "targetAlias": "net7.0", 30 | "projectReferences": {} 31 | } 32 | }, 33 | "warningProperties": { 34 | "warnAsError": [ 35 | "NU1605" 36 | ] 37 | } 38 | }, 39 | "frameworks": { 40 | "net7.0": { 41 | "targetAlias": "net7.0", 42 | "dependencies": { 43 | "Microsoft.Extensions.Configuration": { 44 | "target": "Package", 45 | "version": "[8.0.0, )" 46 | }, 47 | "Microsoft.Extensions.Configuration.Abstractions": { 48 | "target": "Package", 49 | "version": "[8.0.0, )" 50 | }, 51 | "Microsoft.Extensions.Configuration.Json": { 52 | "target": "Package", 53 | "version": "[8.0.0, )" 54 | }, 55 | "System.Configuration.ConfigurationManager": { 56 | "target": "Package", 57 | "version": "[8.0.0, )" 58 | }, 59 | "System.Data.SqlClient": { 60 | "target": "Package", 61 | "version": "[4.8.5, )" 62 | } 63 | }, 64 | "imports": [ 65 | "net461", 66 | "net462", 67 | "net47", 68 | "net471", 69 | "net472", 70 | "net48", 71 | "net481" 72 | ], 73 | "assetTargetFallback": true, 74 | "warn": true, 75 | "frameworkReferences": { 76 | "Microsoft.NETCore.App": { 77 | "privateAssets": "all" 78 | } 79 | }, 80 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 81 | } 82 | } 83 | } 84 | } 85 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/BLEmployeeManagementSystem/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net7.0": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | "net7.0": [ 9 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj" 10 | ] 11 | }, 12 | "packageFolders": { 13 | "C:\\Users\\JBS-\\.nuget\\packages\\": {} 14 | }, 15 | "project": { 16 | "version": "1.0.0", 17 | "restore": { 18 | "projectUniqueName": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 19 | "projectName": "BLEmployeeManagementSystem", 20 | "projectPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 21 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 22 | "outputPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\obj\\", 23 | "projectStyle": "PackageReference", 24 | "configFilePaths": [ 25 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 26 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 27 | ], 28 | "originalTargetFrameworks": [ 29 | "net7.0" 30 | ], 31 | "sources": { 32 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 33 | "https://api.nuget.org/v3/index.json": {} 34 | }, 35 | "frameworks": { 36 | "net7.0": { 37 | "targetAlias": "net7.0", 38 | "projectReferences": { 39 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj": { 40 | "projectPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj" 41 | } 42 | } 43 | } 44 | }, 45 | "warningProperties": { 46 | "warnAsError": [ 47 | "NU1605" 48 | ] 49 | } 50 | }, 51 | "frameworks": { 52 | "net7.0": { 53 | "targetAlias": "net7.0", 54 | "imports": [ 55 | "net461", 56 | "net462", 57 | "net47", 58 | "net471", 59 | "net472", 60 | "net48", 61 | "net481" 62 | ], 63 | "assetTargetFallback": true, 64 | "warn": true, 65 | "frameworkReferences": { 66 | "Microsoft.NETCore.App": { 67 | "privateAssets": "all" 68 | } 69 | }, 70 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 71 | } 72 | } 73 | }, 74 | "logs": [ 75 | { 76 | "code": "NU1104", 77 | "level": "Error", 78 | "message": "Unable to find project 'E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj'. Check that the project reference is valid and that the project file exists.", 79 | "libraryId": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj", 80 | "targetGraphs": [ 81 | "net7.0" 82 | ] 83 | } 84 | ] 85 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net7.0": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | "net7.0": [ 9 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj" 10 | ] 11 | }, 12 | "packageFolders": { 13 | "C:\\Users\\JBS-\\.nuget\\packages\\": {} 14 | }, 15 | "project": { 16 | "version": "1.0.0", 17 | "restore": { 18 | "projectUniqueName": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 19 | "projectName": "BLEmployeeManagementSystem", 20 | "projectPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 21 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 22 | "outputPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\obj\\", 23 | "projectStyle": "PackageReference", 24 | "configFilePaths": [ 25 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 26 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 27 | ], 28 | "originalTargetFrameworks": [ 29 | "net7.0" 30 | ], 31 | "sources": { 32 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 33 | "https://api.nuget.org/v3/index.json": {} 34 | }, 35 | "frameworks": { 36 | "net7.0": { 37 | "targetAlias": "net7.0", 38 | "projectReferences": { 39 | "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj": { 40 | "projectPath": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj" 41 | } 42 | } 43 | } 44 | }, 45 | "warningProperties": { 46 | "warnAsError": [ 47 | "NU1605" 48 | ] 49 | } 50 | }, 51 | "frameworks": { 52 | "net7.0": { 53 | "targetAlias": "net7.0", 54 | "imports": [ 55 | "net461", 56 | "net462", 57 | "net47", 58 | "net471", 59 | "net472", 60 | "net48", 61 | "net481" 62 | ], 63 | "assetTargetFallback": true, 64 | "warn": true, 65 | "frameworkReferences": { 66 | "Microsoft.NETCore.App": { 67 | "privateAssets": "all" 68 | } 69 | }, 70 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 71 | } 72 | } 73 | }, 74 | "logs": [ 75 | { 76 | "code": "NU1104", 77 | "level": "Error", 78 | "message": "Unable to find project 'E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj'. Check that the project reference is valid and that the project file exists.", 79 | "libraryId": "E:\\Atit Sheth\\EmployeeManagementSystem\\EmployeeManagementSystem\\DLEmployee\\DLEmployeeManagementSystem.csproj", 80 | "targetGraphs": [ 81 | "net7.0" 82 | ] 83 | } 84 | ] 85 | } -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "J4CzNR5sX97j/j0oKJhiYm0bFC2HFmzfgQpEwYr56hQ6g5unrX1BmdaWIOnI7x0bvr4QKNO8XlOemRDxmDNy8Q==", 4 | "success": true, 5 | "projectFilePath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512", 8 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", 9 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.0\\microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512", 10 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.0\\microsoft.extensions.configuration.json.8.0.0.nupkg.sha512", 11 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", 12 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", 13 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", 14 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", 15 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", 16 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", 17 | "C:\\Users\\JBS-\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", 18 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 19 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 20 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 21 | "C:\\Users\\JBS-\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", 22 | "C:\\Users\\JBS-\\.nuget\\packages\\system.data.sqlclient\\4.8.5\\system.data.sqlclient.4.8.5.nupkg.sha512", 23 | "C:\\Users\\JBS-\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512", 24 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", 25 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", 26 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", 27 | "C:\\Users\\JBS-\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", 28 | "C:\\Users\\JBS-\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512" 29 | ], 30 | "logs": [] 31 | } -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "2mLKfHAMzN8Fg9j/sTLg6Fu54d/lOI8ITA/iZupqhFyY24oYDL8y7OobYmRy2dg4mxrkSVGrEvCKps6t2gX7qw==", 4 | "success": true, 5 | "projectFilePath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512", 8 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", 9 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.0\\microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512", 10 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.0\\microsoft.extensions.configuration.json.8.0.0.nupkg.sha512", 11 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", 12 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", 13 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", 14 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", 15 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", 16 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", 17 | "C:\\Users\\JBS-\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", 18 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 19 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 20 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 21 | "C:\\Users\\JBS-\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", 22 | "C:\\Users\\JBS-\\.nuget\\packages\\system.data.sqlclient\\4.8.5\\system.data.sqlclient.4.8.5.nupkg.sha512", 23 | "C:\\Users\\JBS-\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512", 24 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", 25 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", 26 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", 27 | "C:\\Users\\JBS-\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", 28 | "C:\\Users\\JBS-\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512" 29 | ], 30 | "logs": [] 31 | } -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/obj/Debug/net7.0/DLEmployeeManagementSystem.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\Atit Sheth\DLEmployee\bin\Debug\net7.0\DLEmployeeManagementSystem.deps.json 2 | E:\Atit Sheth\DLEmployee\bin\Debug\net7.0\DLEmployeeManagementSystem.dll 3 | E:\Atit Sheth\DLEmployee\bin\Debug\net7.0\DLEmployeeManagementSystem.pdb 4 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\DLEmployeeManagementSystem.csproj.AssemblyReference.cache 5 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\DLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 6 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\DLEmployeeManagementSystem.AssemblyInfoInputs.cache 7 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\DLEmployeeManagementSystem.AssemblyInfo.cs 8 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\DLEmployeeManagementSystem.csproj.CoreCompileInputs.cache 9 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\DLEmployeeManagementSystem.dll 10 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\refint\DLEmployeeManagementSystem.dll 11 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\DLEmployeeManagementSystem.pdb 12 | E:\Atit Sheth\DLEmployee\obj\Debug\net7.0\ref\DLEmployeeManagementSystem.dll 13 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.deps.json 14 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.dll 15 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.pdb 16 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.csproj.AssemblyReference.cache 17 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 18 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.AssemblyInfoInputs.cache 19 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.AssemblyInfo.cs 20 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.csproj.CoreCompileInputs.cache 21 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.dll 22 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\refint\DLEmployeeManagementSystem.dll 23 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.pdb 24 | E:\Atit Sheth\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\ref\DLEmployeeManagementSystem.dll 25 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.deps.json 26 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.dll 27 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.pdb 28 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.csproj.AssemblyReference.cache 29 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 30 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.AssemblyInfoInputs.cache 31 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.AssemblyInfo.cs 32 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.csproj.CoreCompileInputs.cache 33 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.dll 34 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\refint\DLEmployeeManagementSystem.dll 35 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\DLEmployeeManagementSystem.pdb 36 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\DLEmployeeManagementSystem\obj\Debug\net7.0\ref\DLEmployeeManagementSystem.dll 37 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/DLEmployee.cs: -------------------------------------------------------------------------------- 1 | using EmployeeManagementSystem.DataAccess; 2 | using EmployeeManagementSystem.DataAccess.DataMembers; 3 | using System.Data; 4 | 5 | namespace DLEmployeeManagementSystem 6 | { 7 | public class DLEmployee 8 | { 9 | /* Create obj for DLCommon and DLEmployee */ 10 | public static DLCommon objCommon = new DLCommon(); 11 | public static List EmployeeList() 12 | { 13 | //Get the all employee list from db 14 | List oResult = new List(); 15 | try 16 | { 17 | DataSet dsEmployee = objCommon.GetDataSet("tblEmployee", "usp_EmployeeList"); 18 | oResult = dsEmployee.Tables[0].AsEnumerable().Select(row => new CTEmployee 19 | { 20 | Id = row.Field(0).GetValueOrDefault(), 21 | FirstName = row.Field(1), 22 | MiddleName = row.Field(2), 23 | LastName = row.Field(3), 24 | 25 | }).ToList(); 26 | } 27 | catch (Exception ex) 28 | { 29 | throw ex; 30 | } 31 | 32 | return oResult; 33 | } 34 | public static CSQLResult EmployeeSave(int iId, string sFirstName, string sMiddleName, string sLastName) 35 | { 36 | //Save the employee in db 37 | CSQLResult oResult = new CSQLResult(); 38 | 39 | try 40 | { 41 | DataSet dsEmployee = objCommon.GetDataSet("tblEmployee", "usp_EmployeeSave " + iId + ", '" + sFirstName + "', '" + sMiddleName + "','" + sLastName + "'"); 42 | using (DataTable dtEmployee = dsEmployee.Tables["tblEmployee"]) 43 | { 44 | if (dtEmployee != null && dtEmployee.Rows.Count > 0) 45 | { 46 | oResult.Success = Convert.ToBoolean(dtEmployee.Rows[0]["Success"]); 47 | oResult.Message = dtEmployee.Rows[0]["ErrorDescription"].ToString(); 48 | } 49 | } 50 | } 51 | catch (Exception ex) 52 | { 53 | oResult.Success = false; 54 | oResult.Message = ex.Message; 55 | } 56 | return oResult; 57 | } 58 | public static CTEmployee EmployeeGet(int iId) 59 | { 60 | //Get the employee from db 61 | CTEmployee oResult = new CTEmployee(); 62 | try 63 | { 64 | DataSet dsEmployee = objCommon.GetDataSet("tblEmployee", "usp_GetEmployee " + iId); 65 | 66 | using (DataTable dtEmployee = dsEmployee.Tables["tblEmployee"]) 67 | { 68 | if (dtEmployee.Rows.Count > 0) 69 | { 70 | oResult = new CTEmployee() 71 | { 72 | Id = Convert.ToInt32(dtEmployee.Rows[0]["Id"]), 73 | FirstName = dtEmployee.Rows[0]["FirstName"].ToString(), 74 | MiddleName = dtEmployee.Rows[0]["MiddleName"].ToString(), 75 | LastName = dtEmployee.Rows[0]["LastName"].ToString() 76 | }; 77 | } 78 | else 79 | { 80 | oResult = new CTEmployee() 81 | { 82 | Message = "No record found.", 83 | Success = false 84 | }; 85 | } 86 | } 87 | } 88 | catch (Exception ex) 89 | { 90 | throw ex; 91 | } 92 | 93 | return oResult; 94 | } 95 | public static CSQLResult EmployeeDelete(int iId) 96 | { 97 | //Delete the employee in db 98 | CSQLResult oResult = new CSQLResult(); 99 | 100 | try 101 | { 102 | DataSet dsEmployee = objCommon.GetDataSet("tblEmployee", "usp_DeleteEmployee " + iId + ""); 103 | using (DataTable dtEmployee = dsEmployee.Tables["tblEmployee"]) 104 | { 105 | if (dtEmployee != null && dtEmployee.Rows.Count > 0) 106 | { 107 | oResult.Success = Convert.ToBoolean(dtEmployee.Rows[0]["Success"]); 108 | oResult.Message = dtEmployee.Rows[0]["ErrorDescription"].ToString(); 109 | } 110 | } 111 | } 112 | catch (Exception ex) 113 | { 114 | oResult.Success = false; 115 | oResult.Message = ex.Message; 116 | } 117 | return oResult; 118 | } 119 | } 120 | } -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/Debug/net7.0/BLEmployeeManagementSystem.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\Atit Sheth\BLEmployee\bin\Debug\net7.0\BLEmployeeManagementSystem.deps.json 2 | E:\Atit Sheth\BLEmployee\bin\Debug\net7.0\BLEmployeeManagementSystem.dll 3 | E:\Atit Sheth\BLEmployee\bin\Debug\net7.0\BLEmployeeManagementSystem.pdb 4 | E:\Atit Sheth\BLEmployee\bin\Debug\net7.0\DLEmployeeManagementSystem.dll 5 | E:\Atit Sheth\BLEmployee\bin\Debug\net7.0\DLEmployeeManagementSystem.pdb 6 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.AssemblyReference.cache 7 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\BLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 8 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\BLEmployeeManagementSystem.AssemblyInfoInputs.cache 9 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\BLEmployeeManagementSystem.AssemblyInfo.cs 10 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.CoreCompileInputs.cache 11 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.CopyComplete 12 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\BLEmployeeManagementSystem.dll 13 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\refint\BLEmployeeManagementSystem.dll 14 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\BLEmployeeManagementSystem.pdb 15 | E:\Atit Sheth\BLEmployee\obj\Debug\net7.0\ref\BLEmployeeManagementSystem.dll 16 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.deps.json 17 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.dll 18 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.pdb 19 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.dll 20 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.pdb 21 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.AssemblyReference.cache 22 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 23 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.AssemblyInfoInputs.cache 24 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.AssemblyInfo.cs 25 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.CoreCompileInputs.cache 26 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.CopyComplete 27 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.dll 28 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\refint\BLEmployeeManagementSystem.dll 29 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.pdb 30 | E:\Atit Sheth\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\ref\BLEmployeeManagementSystem.dll 31 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.deps.json 32 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.dll 33 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.pdb 34 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.dll 35 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.pdb 36 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.AssemblyReference.cache 37 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 38 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.AssemblyInfoInputs.cache 39 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.AssemblyInfo.cs 40 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.CoreCompileInputs.cache 41 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.csproj.CopyComplete 42 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.dll 43 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\refint\BLEmployeeManagementSystem.dll 44 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\BLEmployeeManagementSystem.pdb 45 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\BLEmployeeManagementSystem\obj\Debug\net7.0\ref\BLEmployeeManagementSystem.dll 46 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/Controllers/EmployeeController.cs: -------------------------------------------------------------------------------- 1 | 2 | using BLEmployeeManagementSystem; 3 | using EmployeeManagementSystem.DataAccess.DataMembers; 4 | using EmployeeManagementSystem.Model; 5 | using Microsoft.AspNetCore.Mvc; 6 | 7 | namespace EmployeeManagementSystem.Controllers 8 | { 9 | public class EmployeeController : ControllerBase 10 | { 11 | 12 | [HttpGet] 13 | [Route("api/employeesList")] 14 | public IActionResult EmployeeList() 15 | { 16 | APIResponse apiResponse = new APIResponse(); 17 | List objEmployee = new List(); 18 | try 19 | { 20 | //Get the Employee List and return the json 21 | objEmployee = BLEmployee.EmployeeList().Select(s => new EmployeeModel { Id = s.Id, FirstName = s.FirstName, MiddleName = s.MiddleName, LastName = s.LastName }).ToList(); 22 | return Ok(objEmployee); 23 | } 24 | catch (Exception ex) 25 | { 26 | apiResponse.statusCode = 401; 27 | apiResponse.message = ex.Message; 28 | return BadRequest(apiResponse); 29 | } 30 | 31 | } 32 | 33 | [HttpGet] 34 | [Route("api/employeesGet")] 35 | public IActionResult EmployeeGet(int id) 36 | { 37 | APIResponse apiResponse = new APIResponse(); 38 | try 39 | { 40 | //Get the Employee and return the json 41 | CTEmployee objEmployee = BLEmployee.EmployeeGet(id); 42 | CSQLResult oResult = new CSQLResult(); 43 | if (!objEmployee.Success) 44 | { 45 | oResult.Success = false; 46 | oResult.Message = objEmployee.Message; 47 | return Ok(oResult); 48 | } 49 | else 50 | { 51 | EmployeeModel objEmployeeModel = new EmployeeModel(objEmployee); 52 | return Ok(objEmployeeModel); 53 | } 54 | } 55 | catch (Exception ex) 56 | { 57 | apiResponse.statusCode = 401; 58 | apiResponse.message = ex.Message; 59 | return BadRequest(apiResponse); 60 | } 61 | } 62 | 63 | [HttpPost] 64 | [Route("api/employeesSave")] 65 | public IActionResult EmployeeSave(string firstname, string middlename, string lastname) 66 | { 67 | APIResponse apiResponse = new APIResponse(); 68 | if(firstname == "" && middlename == "" && lastname == "") 69 | { 70 | return NotFound("Params are missing!!"); 71 | } 72 | try 73 | { 74 | EmployeeModel employee = new EmployeeModel(); 75 | employee.FirstName = firstname; 76 | employee.MiddleName = middlename; 77 | employee.LastName = lastname; 78 | 79 | //Save the Employee and return the json 80 | CSQLResult oResult = BLEmployee.EmployeeSave(0, employee.FirstName, employee.MiddleName, employee.LastName); 81 | 82 | if (oResult.Success) 83 | { 84 | return Ok(oResult); 85 | } 86 | else 87 | { 88 | return Ok(oResult); 89 | } 90 | } 91 | catch(Exception ex) 92 | { 93 | apiResponse.statusCode = 401; 94 | apiResponse.message = ex.Message; 95 | return BadRequest(apiResponse); 96 | } 97 | } 98 | [HttpPut] 99 | [Route("api/employeesUpdate")] 100 | public IActionResult EmployeeUpdate(int id, string firstname, string middlename, string lastname) 101 | { 102 | APIResponse apiResponse = new APIResponse(); 103 | try 104 | { 105 | EmployeeModel employee = new EmployeeModel(); 106 | employee.FirstName = firstname; 107 | employee.MiddleName = middlename; 108 | employee.LastName = lastname; 109 | 110 | CSQLResult oResult = BLEmployee.EmployeeSave(id, employee.FirstName, employee.MiddleName, employee.LastName); 111 | 112 | if (oResult.Success) 113 | { 114 | return Ok(oResult); 115 | } 116 | else 117 | { 118 | return Ok(oResult); 119 | } 120 | } 121 | catch (Exception ex) 122 | { 123 | apiResponse.statusCode = 401; 124 | apiResponse.message = ex.Message; 125 | return BadRequest(apiResponse); 126 | } 127 | } 128 | [HttpDelete] 129 | [Route("api/employeesDelete")] 130 | public IActionResult EmployeeDelete(int id) 131 | { 132 | APIResponse apiResponse = new APIResponse(); 133 | 134 | try 135 | { 136 | CSQLResult oResult = BLEmployee.EmployeeDelete(id); 137 | return Ok(oResult); 138 | } 139 | catch (Exception ex) 140 | { 141 | apiResponse.statusCode = 401; 142 | apiResponse.message = ex.Message; 143 | return BadRequest(apiResponse); 144 | } 145 | 146 | } 147 | } 148 | } 149 | -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "Si/4x+GXcFblEdcXmVc+yLu8o+Hxp//jOTsmrCEiFIKQw0NdsAHp899dF7eUVvUPdyE8UeOUz6w+Z9tC0wrATw==", 4 | "success": true, 5 | "projectFilePath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\EmployeeManagementSystem\\EmployeeManagementSystem.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.aspnet.webapi.client\\6.0.0\\microsoft.aspnet.webapi.client.6.0.0.nupkg.sha512", 8 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.aspnet.webapi.core\\5.3.0\\microsoft.aspnet.webapi.core.5.3.0.nupkg.sha512", 9 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.aspnetcore.openapi\\7.0.9\\microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512", 10 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", 11 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512", 12 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", 13 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.0\\microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512", 14 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.0\\microsoft.extensions.configuration.json.8.0.0.nupkg.sha512", 15 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", 16 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", 17 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", 18 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", 19 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", 20 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512", 21 | "C:\\Users\\JBS-\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", 22 | "C:\\Users\\JBS-\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", 23 | "C:\\Users\\JBS-\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", 24 | "C:\\Users\\JBS-\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", 25 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 26 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 27 | "C:\\Users\\JBS-\\.nuget\\packages\\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", 28 | "C:\\Users\\JBS-\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512", 29 | "C:\\Users\\JBS-\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512", 30 | "C:\\Users\\JBS-\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512", 31 | "C:\\Users\\JBS-\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512", 32 | "C:\\Users\\JBS-\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", 33 | "C:\\Users\\JBS-\\.nuget\\packages\\system.data.sqlclient\\4.8.5\\system.data.sqlclient.4.8.5.nupkg.sha512", 34 | "C:\\Users\\JBS-\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512", 35 | "C:\\Users\\JBS-\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", 36 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", 37 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", 38 | "C:\\Users\\JBS-\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", 39 | "C:\\Users\\JBS-\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", 40 | "C:\\Users\\JBS-\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512", 41 | "C:\\Users\\JBS-\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512" 42 | ], 43 | "logs": [ 44 | { 45 | "code": "NU1701", 46 | "level": "Warning", 47 | "warningLevel": 1, 48 | "message": "Package 'Microsoft.AspNet.WebApi.Core 5.3.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", 49 | "libraryId": "Microsoft.AspNet.WebApi.Core", 50 | "targetGraphs": [ 51 | "net7.0" 52 | ] 53 | } 54 | ] 55 | } -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/obj/BLEmployeeManagementSystem.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj": {} 5 | }, 6 | "projects": { 7 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 11 | "projectName": "BLEmployeeManagementSystem", 12 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 13 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 14 | "outputPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net7.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net7.0": { 29 | "targetAlias": "net7.0", 30 | "projectReferences": { 31 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj": { 32 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj" 33 | } 34 | } 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "net7.0": { 45 | "targetAlias": "net7.0", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "frameworkReferences": { 58 | "Microsoft.NETCore.App": { 59 | "privateAssets": "all" 60 | } 61 | }, 62 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 63 | } 64 | } 65 | }, 66 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj": { 67 | "version": "1.0.0", 68 | "restore": { 69 | "projectUniqueName": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj", 70 | "projectName": "DLEmployeeManagementSystem", 71 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj", 72 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 73 | "outputPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\obj\\", 74 | "projectStyle": "PackageReference", 75 | "configFilePaths": [ 76 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 77 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 78 | ], 79 | "originalTargetFrameworks": [ 80 | "net7.0" 81 | ], 82 | "sources": { 83 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 84 | "https://api.nuget.org/v3/index.json": {} 85 | }, 86 | "frameworks": { 87 | "net7.0": { 88 | "targetAlias": "net7.0", 89 | "projectReferences": {} 90 | } 91 | }, 92 | "warningProperties": { 93 | "warnAsError": [ 94 | "NU1605" 95 | ] 96 | } 97 | }, 98 | "frameworks": { 99 | "net7.0": { 100 | "targetAlias": "net7.0", 101 | "dependencies": { 102 | "Microsoft.Extensions.Configuration": { 103 | "target": "Package", 104 | "version": "[8.0.0, )" 105 | }, 106 | "Microsoft.Extensions.Configuration.Abstractions": { 107 | "target": "Package", 108 | "version": "[8.0.0, )" 109 | }, 110 | "Microsoft.Extensions.Configuration.Json": { 111 | "target": "Package", 112 | "version": "[8.0.0, )" 113 | }, 114 | "System.Configuration.ConfigurationManager": { 115 | "target": "Package", 116 | "version": "[8.0.0, )" 117 | }, 118 | "System.Data.SqlClient": { 119 | "target": "Package", 120 | "version": "[4.8.5, )" 121 | } 122 | }, 123 | "imports": [ 124 | "net461", 125 | "net462", 126 | "net47", 127 | "net471", 128 | "net472", 129 | "net48", 130 | "net481" 131 | ], 132 | "assetTargetFallback": true, 133 | "warn": true, 134 | "frameworkReferences": { 135 | "Microsoft.NETCore.App": { 136 | "privateAssets": "all" 137 | } 138 | }, 139 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 140 | } 141 | } 142 | } 143 | } 144 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/EmployeeManagementSystem.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\EmployeeManagementSystem\\EmployeeManagementSystem.csproj": {} 5 | }, 6 | "projects": { 7 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 11 | "projectName": "BLEmployeeManagementSystem", 12 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj", 13 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 14 | "outputPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net7.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net7.0": { 29 | "targetAlias": "net7.0", 30 | "projectReferences": { 31 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj": { 32 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj" 33 | } 34 | } 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "net7.0": { 45 | "targetAlias": "net7.0", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "frameworkReferences": { 58 | "Microsoft.NETCore.App": { 59 | "privateAssets": "all" 60 | } 61 | }, 62 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 63 | } 64 | } 65 | }, 66 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj": { 67 | "version": "1.0.0", 68 | "restore": { 69 | "projectUniqueName": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj", 70 | "projectName": "DLEmployeeManagementSystem", 71 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj", 72 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 73 | "outputPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\obj\\", 74 | "projectStyle": "PackageReference", 75 | "configFilePaths": [ 76 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 77 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 78 | ], 79 | "originalTargetFrameworks": [ 80 | "net7.0" 81 | ], 82 | "sources": { 83 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 84 | "https://api.nuget.org/v3/index.json": {} 85 | }, 86 | "frameworks": { 87 | "net7.0": { 88 | "targetAlias": "net7.0", 89 | "projectReferences": {} 90 | } 91 | }, 92 | "warningProperties": { 93 | "warnAsError": [ 94 | "NU1605" 95 | ] 96 | } 97 | }, 98 | "frameworks": { 99 | "net7.0": { 100 | "targetAlias": "net7.0", 101 | "dependencies": { 102 | "Microsoft.Extensions.Configuration": { 103 | "target": "Package", 104 | "version": "[8.0.0, )" 105 | }, 106 | "Microsoft.Extensions.Configuration.Abstractions": { 107 | "target": "Package", 108 | "version": "[8.0.0, )" 109 | }, 110 | "Microsoft.Extensions.Configuration.Json": { 111 | "target": "Package", 112 | "version": "[8.0.0, )" 113 | }, 114 | "System.Configuration.ConfigurationManager": { 115 | "target": "Package", 116 | "version": "[8.0.0, )" 117 | }, 118 | "System.Data.SqlClient": { 119 | "target": "Package", 120 | "version": "[4.8.5, )" 121 | } 122 | }, 123 | "imports": [ 124 | "net461", 125 | "net462", 126 | "net47", 127 | "net471", 128 | "net472", 129 | "net48", 130 | "net481" 131 | ], 132 | "assetTargetFallback": true, 133 | "warn": true, 134 | "frameworkReferences": { 135 | "Microsoft.NETCore.App": { 136 | "privateAssets": "all" 137 | } 138 | }, 139 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 140 | } 141 | } 142 | }, 143 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\EmployeeManagementSystem\\EmployeeManagementSystem.csproj": { 144 | "version": "1.0.0", 145 | "restore": { 146 | "projectUniqueName": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\EmployeeManagementSystem\\EmployeeManagementSystem.csproj", 147 | "projectName": "EmployeeManagementSystem", 148 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\EmployeeManagementSystem\\EmployeeManagementSystem.csproj", 149 | "packagesPath": "C:\\Users\\JBS-\\.nuget\\packages\\", 150 | "outputPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\EmployeeManagementSystem\\obj\\", 151 | "projectStyle": "PackageReference", 152 | "configFilePaths": [ 153 | "C:\\Users\\JBS-\\AppData\\Roaming\\NuGet\\NuGet.Config", 154 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 155 | ], 156 | "originalTargetFrameworks": [ 157 | "net7.0" 158 | ], 159 | "sources": { 160 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 161 | "C:\\Program Files\\dotnet\\sdk\\7.0.306\\Sdks\\Microsoft.NET.Sdk.Web\\library-packs": {}, 162 | "https://api.nuget.org/v3/index.json": {} 163 | }, 164 | "frameworks": { 165 | "net7.0": { 166 | "targetAlias": "net7.0", 167 | "projectReferences": { 168 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj": { 169 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\BLEmployeeManagementSystem\\BLEmployeeManagementSystem.csproj" 170 | }, 171 | "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj": { 172 | "projectPath": "E:\\Atit Sheth\\DemoProject\\EmployeeManagementSystem\\DLEmployeeManagementSystem\\DLEmployeeManagementSystem.csproj" 173 | } 174 | } 175 | } 176 | }, 177 | "warningProperties": { 178 | "warnAsError": [ 179 | "NU1605" 180 | ] 181 | } 182 | }, 183 | "frameworks": { 184 | "net7.0": { 185 | "targetAlias": "net7.0", 186 | "dependencies": { 187 | "Microsoft.AspNet.WebApi.Core": { 188 | "target": "Package", 189 | "version": "[5.3.0, )" 190 | }, 191 | "Microsoft.AspNetCore.OpenApi": { 192 | "target": "Package", 193 | "version": "[7.0.9, )" 194 | }, 195 | "Microsoft.Extensions.Configuration.Json": { 196 | "target": "Package", 197 | "version": "[8.0.0, )" 198 | }, 199 | "Swashbuckle.AspNetCore": { 200 | "target": "Package", 201 | "version": "[6.5.0, )" 202 | }, 203 | "System.Data.SqlClient": { 204 | "target": "Package", 205 | "version": "[4.8.5, )" 206 | } 207 | }, 208 | "imports": [ 209 | "net461", 210 | "net462", 211 | "net47", 212 | "net471", 213 | "net472", 214 | "net48", 215 | "net481" 216 | ], 217 | "assetTargetFallback": true, 218 | "warn": true, 219 | "frameworkReferences": { 220 | "Microsoft.AspNetCore.App": { 221 | "privateAssets": "none" 222 | }, 223 | "Microsoft.NETCore.App": { 224 | "privateAssets": "all" 225 | } 226 | }, 227 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" 228 | } 229 | } 230 | } 231 | } 232 | } -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/DLCommon.cs: -------------------------------------------------------------------------------- 1 | using System.Data; 2 | using System.Data.SqlClient; 3 | using Microsoft.Extensions.Configuration; 4 | 5 | namespace EmployeeManagementSystem.DataAccess 6 | { 7 | public class DLCommon 8 | { 9 | 10 | /* Set the Keys for Encryption */ 11 | private static string _sCryptoPass = "EmployeeManagementSystem"; 12 | private byte[] _byKey = { 1, 2, 3, 4, 5, 6, 7, 8 }; 13 | private static byte[] _byVector = { 65, 110, 68, 26, 69, 178, 200, 219 }; 14 | 15 | public IConfiguration Configuration { get; set; } 16 | 17 | public DLCommon() 18 | { 19 | var builder = new ConfigurationBuilder().AddJsonFile("AppSettings.json"); 20 | Configuration = builder.Build(); 21 | } 22 | 23 | //Get the connection string from appsetting.json file 24 | protected string connectionString 25 | { 26 | get 27 | { 28 | return Configuration.GetConnectionString("DefaultConnection"); 29 | } 30 | } 31 | 32 | //Connection object for SQL Server 33 | protected SqlConnection connectionObject 34 | { 35 | get 36 | { 37 | SqlConnection SQLConn = new SqlConnection(); 38 | SQLConn.ConnectionString = connectionString; 39 | return SQLConn; 40 | } 41 | } 42 | 43 | //Enum for Command Type 44 | public enum CommandTypes 45 | { 46 | TableDirect = 0, 47 | Text = 1, 48 | StoredProcedure = 4 49 | } 50 | 51 | //Enum for Return Type 52 | public enum ReturnTypes 53 | { 54 | None = 0, //DataReader 55 | ReturnValue = 1 //Scalar 56 | } 57 | 58 | //Enum for ReaderTypes 59 | public enum ReaderTypes : int 60 | { 61 | DataReader = 0, //Datareader 62 | DataScalar = 1//datareader scalar 63 | } 64 | 65 | /* Set the SQL command type */ 66 | public SqlCommand GetSQLCommand(int dbCommandType, string dbCommand) 67 | { 68 | SqlCommand SQLComm = new SqlCommand(); 69 | try 70 | { 71 | SQLComm.CommandText = dbCommand; 72 | switch (dbCommandType) 73 | { 74 | case (int)CommandType.TableDirect: 75 | SQLComm.CommandType = CommandType.TableDirect; 76 | break; 77 | case (int)CommandType.Text: 78 | SQLComm.CommandType = CommandType.Text; 79 | break; 80 | case (int)CommandType.StoredProcedure: 81 | SQLComm.CommandType = CommandType.StoredProcedure; 82 | break; 83 | } 84 | } 85 | catch (Exception ex) 86 | { 87 | SQLComm = null; 88 | throw ex; 89 | } 90 | 91 | return SQLComm; 92 | } 93 | 94 | public SqlCommand GetSQLCommand(string dbCommand) 95 | { 96 | SqlCommand SQLComm = new SqlCommand(); 97 | try 98 | { 99 | SQLComm.CommandText = dbCommand; 100 | SQLComm.CommandType = CommandType.StoredProcedure; 101 | } 102 | catch (Exception ex) 103 | { 104 | SQLComm = null; 105 | throw ex; 106 | } 107 | 108 | return SQLComm; 109 | } 110 | 111 | /* Execute the Data Reader */ 112 | protected SqlDataReader GetDataReader(int dbCommandType, string dbCommand, int ReaderType) 113 | { 114 | SqlDataReader SQLdtr = null; 115 | try 116 | { 117 | SqlConnection SQLConn = new SqlConnection(); 118 | SqlCommand SQLcomm = new SqlCommand(); 119 | SQLConn = connectionObject; 120 | SQLcomm = GetSQLCommand(dbCommandType, dbCommand); 121 | SQLcomm.Connection = SQLConn; 122 | SQLConn.Open(); 123 | 124 | switch (ReaderType) 125 | { 126 | case (int)ReaderTypes.DataReader: 127 | SQLdtr = SQLcomm.ExecuteReader(CommandBehavior.CloseConnection); 128 | break; 129 | case (int)ReaderTypes.DataScalar: 130 | SQLdtr = (SqlDataReader)SQLcomm.ExecuteScalar(); 131 | break; 132 | } 133 | return SQLdtr; 134 | } 135 | catch (Exception ex) 136 | { 137 | throw ex; 138 | } 139 | finally 140 | { 141 | if ((SQLdtr != null)) 142 | SQLdtr = null; 143 | } 144 | } 145 | 146 | //Function for get data from DataBase 147 | public DataSet GetDataSet(string dsTable, string dsSQL) 148 | { 149 | DataSet ds = new DataSet(); 150 | DataSet dsReturn; 151 | SqlConnection SQLConn = new SqlConnection(); 152 | SqlDataAdapter SQLdAdpt; 153 | int iPos; 154 | 155 | try 156 | { 157 | SQLConn = connectionObject; 158 | SQLdAdpt = new SqlDataAdapter(dsSQL, SQLConn); 159 | SQLdAdpt.Fill(ds); 160 | 161 | string[] arrTable = dsTable.Split(','); 162 | for (iPos = 0; iPos <= arrTable.Length - 1; iPos++) 163 | { 164 | ds.Tables[iPos].TableName = arrTable[iPos]; 165 | } 166 | } 167 | catch (Exception ex) 168 | { 169 | throw ex; 170 | } 171 | finally 172 | { 173 | SQLdAdpt = null; 174 | if ((SQLConn != null)) 175 | SQLConn.Close(); 176 | dsReturn = ds; 177 | ds.Dispose(); 178 | ds = null; 179 | } 180 | return dsReturn; 181 | } 182 | 183 | public DataSet GetDataSetSave(string dsTable, SqlCommand SQLComm) 184 | { 185 | DataSet ds = new DataSet(); 186 | DataSet dsReturn; 187 | SqlConnection SQLConn = new SqlConnection(); 188 | SqlDataAdapter SQLdAdpt; 189 | int iPos; 190 | 191 | try 192 | { 193 | SQLConn = connectionObject; 194 | SQLComm.Connection = SQLConn; 195 | SQLdAdpt = new SqlDataAdapter(SQLComm); 196 | SQLdAdpt.Fill(ds); 197 | 198 | string[] arrTable = dsTable.Split(','); 199 | for (iPos = 0; iPos <= arrTable.Length - 1; iPos++) 200 | { 201 | ds.Tables[iPos].TableName = arrTable[iPos]; 202 | } 203 | } 204 | catch (Exception ex) 205 | { 206 | throw ex; 207 | } 208 | finally 209 | { 210 | SQLdAdpt = null; 211 | if ((SQLConn != null)) 212 | SQLConn.Close(); 213 | dsReturn = ds; 214 | ds.Dispose(); 215 | ds = null; 216 | } 217 | return dsReturn; 218 | } 219 | 220 | public DataSet GetDataSetSave(SqlCommand SQLComm) 221 | { 222 | DataSet ds = new DataSet(); 223 | DataSet dsReturn; 224 | SqlConnection SQLConn = new SqlConnection(); 225 | SqlDataAdapter SQLdAdpt; 226 | int iPos; 227 | 228 | try 229 | { 230 | SQLConn = connectionObject; 231 | SQLComm.Connection = SQLConn; 232 | SQLdAdpt = new SqlDataAdapter(SQLComm); 233 | SQLdAdpt.Fill(ds); 234 | 235 | for (iPos = 0; iPos < ds.Tables.Count; iPos++) 236 | { 237 | if (ds.Tables[iPos].Rows.Count > 0) 238 | { 239 | ds.Tables[iPos].TableName = ds.Tables[iPos].Rows[0]["TableName"].ToString(); 240 | } 241 | } 242 | } 243 | catch (Exception ex) 244 | { 245 | throw ex; 246 | } 247 | finally 248 | { 249 | SQLdAdpt = null; 250 | if ((SQLConn != null)) 251 | SQLConn.Close(); 252 | dsReturn = ds; 253 | ds.Dispose(); 254 | ds = null; 255 | } 256 | return dsReturn; 257 | } 258 | 259 | //Function for execute the query 260 | public int DataNonQuery(int dbCommandType, string dbCommand, int dbReturnType, string dbConnection) 261 | { 262 | SqlConnection SQLConn = new SqlConnection(); 263 | SqlCommand SQLComm = new SqlCommand(); 264 | int iReturn; 265 | 266 | try 267 | { 268 | SQLConn = connectionObject; 269 | SQLComm = GetSQLCommand(dbCommandType, dbCommand); 270 | 271 | if (dbReturnType == (int)(ReturnTypes.ReturnValue)) 272 | { 273 | //Add return parameter 274 | SqlParameter paramReturnValue = new SqlParameter(); 275 | paramReturnValue.ParameterName = "@ReturnValue"; 276 | paramReturnValue.SqlDbType = SqlDbType.Int; 277 | paramReturnValue.Direction = ParameterDirection.ReturnValue; 278 | //Set timeout to 0 279 | SQLComm.CommandTimeout = 0; 280 | SQLComm.Parameters.Add(paramReturnValue); 281 | 282 | SQLConn.Open(); 283 | SQLComm.ExecuteNonQuery(); 284 | 285 | iReturn = Convert.ToInt32(paramReturnValue.Value); 286 | return iReturn; 287 | } 288 | else 289 | { 290 | SQLConn.Open(); 291 | iReturn = SQLComm.ExecuteNonQuery(); 292 | return iReturn; 293 | } 294 | } 295 | catch (Exception ex) 296 | { 297 | throw ex; 298 | } 299 | finally 300 | { 301 | if (SQLComm != null) 302 | SQLComm.Dispose(); 303 | SQLComm = null; 304 | if (SQLConn != null) 305 | SQLConn.Close(); 306 | SQLConn.Dispose(); 307 | SQLConn = null; 308 | } 309 | } 310 | 311 | 312 | } 313 | } -------------------------------------------------------------------------------- /EmployeeManagementSystem/obj/Debug/net7.0/EmployeeManagementSystem.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\Atit Sheth\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.csproj.AssemblyReference.cache 2 | E:\Atit Sheth\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 3 | E:\Atit Sheth\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.AssemblyInfoInputs.cache 4 | E:\Atit Sheth\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.AssemblyInfo.cs 5 | E:\Atit Sheth\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.csproj.CoreCompileInputs.cache 6 | E:\Atit Sheth\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cs 7 | E:\Atit Sheth\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cache 8 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\appsettings.Development.json 9 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\appsettings.json 10 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem\obj\BLEmployeeManagementSystem.csproj.nuget.dgspec.json 11 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem\obj\project.assets.json 12 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.exe 13 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.deps.json 14 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.runtimeconfig.json 15 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.dll 16 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.pdb 17 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Net.Http.Formatting.dll 18 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Web.Http.dll 19 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll 20 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Configuration.dll 21 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Abstractions.dll 22 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Configuration.FileExtensions.dll 23 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Json.dll 24 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Abstractions.dll 25 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Physical.dll 26 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.FileSystemGlobbing.dll 27 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Primitives.dll 28 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.OpenApi.dll 29 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Newtonsoft.Json.dll 30 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll 31 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll 32 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll 33 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll 34 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll 35 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Data.SqlClient.dll 36 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Diagnostics.EventLog.dll 37 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll 38 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Text.Encodings.Web.dll 39 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Text.Json.dll 40 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll 41 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll 42 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll 43 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll 44 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll 45 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.Messages.dll 46 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.dll 47 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\browser\lib\net7.0\System.Text.Encodings.Web.dll 48 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.dll 49 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.dll 50 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.pdb 51 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.pdb 52 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.csproj.AssemblyReference.cache 53 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 54 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.AssemblyInfoInputs.cache 55 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.AssemblyInfo.cs 56 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.csproj.CoreCompileInputs.cache 57 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cs 58 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cache 59 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets\msbuild.EmployeeManagementSystem.Microsoft.AspNetCore.StaticWebAssets.props 60 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets\msbuild.build.EmployeeManagementSystem.props 61 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.EmployeeManagementSystem.props 62 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.EmployeeManagementSystem.props 63 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets.pack.json 64 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets.build.json 65 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets.development.json 66 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\scopedcss\bundle\EmployeeManagementSystem.styles.css 67 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.csproj.CopyComplete 68 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.dll 69 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\refint\EmployeeManagementSystem.dll 70 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.pdb 71 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.genruntimeconfig.cache 72 | E:\Atit Sheth\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\ref\EmployeeManagementSystem.dll 73 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\appsettings.Development.json 74 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\appsettings.json 75 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem\obj\BLEmployeeManagementSystem.csproj.nuget.dgspec.json 76 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem\obj\project.assets.json 77 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.exe 78 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.deps.json 79 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.runtimeconfig.json 80 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.dll 81 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\EmployeeManagementSystem.pdb 82 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Net.Http.Formatting.dll 83 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Web.Http.dll 84 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll 85 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Configuration.dll 86 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Abstractions.dll 87 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Configuration.FileExtensions.dll 88 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Json.dll 89 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Abstractions.dll 90 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Physical.dll 91 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.FileSystemGlobbing.dll 92 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.Extensions.Primitives.dll 93 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Microsoft.OpenApi.dll 94 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Newtonsoft.Json.dll 95 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll 96 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll 97 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll 98 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll 99 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll 100 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Data.SqlClient.dll 101 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Diagnostics.EventLog.dll 102 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll 103 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Text.Encodings.Web.dll 104 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\System.Text.Json.dll 105 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll 106 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll 107 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll 108 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll 109 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll 110 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.Messages.dll 111 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.dll 112 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\runtimes\browser\lib\net7.0\System.Text.Encodings.Web.dll 113 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.dll 114 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.dll 115 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\BLEmployeeManagementSystem.pdb 116 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\bin\Debug\net7.0\DLEmployeeManagementSystem.pdb 117 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.csproj.AssemblyReference.cache 118 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.GeneratedMSBuildEditorConfig.editorconfig 119 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.AssemblyInfoInputs.cache 120 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.AssemblyInfo.cs 121 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.csproj.CoreCompileInputs.cache 122 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cs 123 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.MvcApplicationPartsAssemblyInfo.cache 124 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets\msbuild.EmployeeManagementSystem.Microsoft.AspNetCore.StaticWebAssets.props 125 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets\msbuild.build.EmployeeManagementSystem.props 126 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.EmployeeManagementSystem.props 127 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.EmployeeManagementSystem.props 128 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets.pack.json 129 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets.build.json 130 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\staticwebassets.development.json 131 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\scopedcss\bundle\EmployeeManagementSystem.styles.css 132 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.csproj.CopyComplete 133 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.dll 134 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\refint\EmployeeManagementSystem.dll 135 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.pdb 136 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\EmployeeManagementSystem.genruntimeconfig.cache 137 | E:\Atit Sheth\DemoProject\EmployeeManagementSystem\EmployeeManagementSystem\obj\Debug\net7.0\ref\EmployeeManagementSystem.dll 138 | -------------------------------------------------------------------------------- /DLEmployeeManagementSystem/bin/Debug/net7.0/DLEmployeeManagementSystem.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v7.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v7.0": { 9 | "DLEmployeeManagementSystem/1.0.0": { 10 | "dependencies": { 11 | "Microsoft.Extensions.Configuration": "8.0.0", 12 | "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", 13 | "Microsoft.Extensions.Configuration.Json": "8.0.0", 14 | "System.Configuration.ConfigurationManager": "8.0.0", 15 | "System.Data.SqlClient": "4.8.5" 16 | }, 17 | "runtime": { 18 | "DLEmployeeManagementSystem.dll": {} 19 | } 20 | }, 21 | "Microsoft.Extensions.Configuration/8.0.0": { 22 | "dependencies": { 23 | "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", 24 | "Microsoft.Extensions.Primitives": "8.0.0" 25 | }, 26 | "runtime": { 27 | "lib/net7.0/Microsoft.Extensions.Configuration.dll": { 28 | "assemblyVersion": "8.0.0.0", 29 | "fileVersion": "8.0.23.53103" 30 | } 31 | } 32 | }, 33 | "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { 34 | "dependencies": { 35 | "Microsoft.Extensions.Primitives": "8.0.0" 36 | }, 37 | "runtime": { 38 | "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { 39 | "assemblyVersion": "8.0.0.0", 40 | "fileVersion": "8.0.23.53103" 41 | } 42 | } 43 | }, 44 | "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { 45 | "dependencies": { 46 | "Microsoft.Extensions.Configuration": "8.0.0", 47 | "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", 48 | "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", 49 | "Microsoft.Extensions.FileProviders.Physical": "8.0.0", 50 | "Microsoft.Extensions.Primitives": "8.0.0" 51 | }, 52 | "runtime": { 53 | "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { 54 | "assemblyVersion": "8.0.0.0", 55 | "fileVersion": "8.0.23.53103" 56 | } 57 | } 58 | }, 59 | "Microsoft.Extensions.Configuration.Json/8.0.0": { 60 | "dependencies": { 61 | "Microsoft.Extensions.Configuration": "8.0.0", 62 | "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", 63 | "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", 64 | "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", 65 | "System.Text.Json": "8.0.0" 66 | }, 67 | "runtime": { 68 | "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": { 69 | "assemblyVersion": "8.0.0.0", 70 | "fileVersion": "8.0.23.53103" 71 | } 72 | } 73 | }, 74 | "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { 75 | "dependencies": { 76 | "Microsoft.Extensions.Primitives": "8.0.0" 77 | }, 78 | "runtime": { 79 | "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { 80 | "assemblyVersion": "8.0.0.0", 81 | "fileVersion": "8.0.23.53103" 82 | } 83 | } 84 | }, 85 | "Microsoft.Extensions.FileProviders.Physical/8.0.0": { 86 | "dependencies": { 87 | "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", 88 | "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", 89 | "Microsoft.Extensions.Primitives": "8.0.0" 90 | }, 91 | "runtime": { 92 | "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": { 93 | "assemblyVersion": "8.0.0.0", 94 | "fileVersion": "8.0.23.53103" 95 | } 96 | } 97 | }, 98 | "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { 99 | "runtime": { 100 | "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": { 101 | "assemblyVersion": "8.0.0.0", 102 | "fileVersion": "8.0.23.53103" 103 | } 104 | } 105 | }, 106 | "Microsoft.Extensions.Primitives/8.0.0": { 107 | "runtime": { 108 | "lib/net7.0/Microsoft.Extensions.Primitives.dll": { 109 | "assemblyVersion": "8.0.0.0", 110 | "fileVersion": "8.0.23.53103" 111 | } 112 | } 113 | }, 114 | "Microsoft.NETCore.Platforms/3.1.0": {}, 115 | "Microsoft.Win32.Registry/4.7.0": { 116 | "dependencies": { 117 | "System.Security.AccessControl": "4.7.0", 118 | "System.Security.Principal.Windows": "4.7.0" 119 | } 120 | }, 121 | "runtime.native.System.Data.SqlClient.sni/4.7.0": { 122 | "dependencies": { 123 | "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", 124 | "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", 125 | "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" 126 | } 127 | }, 128 | "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { 129 | "runtimeTargets": { 130 | "runtimes/win-arm64/native/sni.dll": { 131 | "rid": "win-arm64", 132 | "assetType": "native", 133 | "fileVersion": "4.6.25512.1" 134 | } 135 | } 136 | }, 137 | "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { 138 | "runtimeTargets": { 139 | "runtimes/win-x64/native/sni.dll": { 140 | "rid": "win-x64", 141 | "assetType": "native", 142 | "fileVersion": "4.6.25512.1" 143 | } 144 | } 145 | }, 146 | "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { 147 | "runtimeTargets": { 148 | "runtimes/win-x86/native/sni.dll": { 149 | "rid": "win-x86", 150 | "assetType": "native", 151 | "fileVersion": "4.6.25512.1" 152 | } 153 | } 154 | }, 155 | "System.Configuration.ConfigurationManager/8.0.0": { 156 | "dependencies": { 157 | "System.Diagnostics.EventLog": "8.0.0", 158 | "System.Security.Cryptography.ProtectedData": "8.0.0" 159 | }, 160 | "runtime": { 161 | "lib/net7.0/System.Configuration.ConfigurationManager.dll": { 162 | "assemblyVersion": "8.0.0.0", 163 | "fileVersion": "8.0.23.53103" 164 | } 165 | } 166 | }, 167 | "System.Data.SqlClient/4.8.5": { 168 | "dependencies": { 169 | "Microsoft.Win32.Registry": "4.7.0", 170 | "System.Security.Principal.Windows": "4.7.0", 171 | "runtime.native.System.Data.SqlClient.sni": "4.7.0" 172 | }, 173 | "runtime": { 174 | "lib/netcoreapp2.1/System.Data.SqlClient.dll": { 175 | "assemblyVersion": "4.6.1.5", 176 | "fileVersion": "4.700.22.51706" 177 | } 178 | }, 179 | "runtimeTargets": { 180 | "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { 181 | "rid": "unix", 182 | "assetType": "runtime", 183 | "assemblyVersion": "4.6.1.5", 184 | "fileVersion": "4.700.22.51706" 185 | }, 186 | "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { 187 | "rid": "win", 188 | "assetType": "runtime", 189 | "assemblyVersion": "4.6.1.5", 190 | "fileVersion": "4.700.22.51706" 191 | } 192 | } 193 | }, 194 | "System.Diagnostics.EventLog/8.0.0": { 195 | "runtime": { 196 | "lib/net7.0/System.Diagnostics.EventLog.dll": { 197 | "assemblyVersion": "8.0.0.0", 198 | "fileVersion": "8.0.23.53103" 199 | } 200 | }, 201 | "runtimeTargets": { 202 | "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": { 203 | "rid": "win", 204 | "assetType": "runtime", 205 | "assemblyVersion": "8.0.0.0", 206 | "fileVersion": "0.0.0.0" 207 | }, 208 | "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": { 209 | "rid": "win", 210 | "assetType": "runtime", 211 | "assemblyVersion": "8.0.0.0", 212 | "fileVersion": "8.0.23.53103" 213 | } 214 | } 215 | }, 216 | "System.Security.AccessControl/4.7.0": { 217 | "dependencies": { 218 | "Microsoft.NETCore.Platforms": "3.1.0", 219 | "System.Security.Principal.Windows": "4.7.0" 220 | } 221 | }, 222 | "System.Security.Cryptography.ProtectedData/8.0.0": { 223 | "runtime": { 224 | "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { 225 | "assemblyVersion": "8.0.0.0", 226 | "fileVersion": "8.0.23.53103" 227 | } 228 | } 229 | }, 230 | "System.Security.Principal.Windows/4.7.0": {}, 231 | "System.Text.Encodings.Web/8.0.0": { 232 | "runtime": { 233 | "lib/net7.0/System.Text.Encodings.Web.dll": { 234 | "assemblyVersion": "8.0.0.0", 235 | "fileVersion": "8.0.23.53103" 236 | } 237 | }, 238 | "runtimeTargets": { 239 | "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { 240 | "rid": "browser", 241 | "assetType": "runtime", 242 | "assemblyVersion": "8.0.0.0", 243 | "fileVersion": "8.0.23.53103" 244 | } 245 | } 246 | }, 247 | "System.Text.Json/8.0.0": { 248 | "dependencies": { 249 | "System.Text.Encodings.Web": "8.0.0" 250 | }, 251 | "runtime": { 252 | "lib/net7.0/System.Text.Json.dll": { 253 | "assemblyVersion": "8.0.0.0", 254 | "fileVersion": "8.0.23.53103" 255 | } 256 | } 257 | } 258 | } 259 | }, 260 | "libraries": { 261 | "DLEmployeeManagementSystem/1.0.0": { 262 | "type": "project", 263 | "serviceable": false, 264 | "sha512": "" 265 | }, 266 | "Microsoft.Extensions.Configuration/8.0.0": { 267 | "type": "package", 268 | "serviceable": true, 269 | "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", 270 | "path": "microsoft.extensions.configuration/8.0.0", 271 | "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512" 272 | }, 273 | "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { 274 | "type": "package", 275 | "serviceable": true, 276 | "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", 277 | "path": "microsoft.extensions.configuration.abstractions/8.0.0", 278 | "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" 279 | }, 280 | "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { 281 | "type": "package", 282 | "serviceable": true, 283 | "sha512": "sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", 284 | "path": "microsoft.extensions.configuration.fileextensions/8.0.0", 285 | "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512" 286 | }, 287 | "Microsoft.Extensions.Configuration.Json/8.0.0": { 288 | "type": "package", 289 | "serviceable": true, 290 | "sha512": "sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", 291 | "path": "microsoft.extensions.configuration.json/8.0.0", 292 | "hashPath": "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512" 293 | }, 294 | "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { 295 | "type": "package", 296 | "serviceable": true, 297 | "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", 298 | "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", 299 | "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512" 300 | }, 301 | "Microsoft.Extensions.FileProviders.Physical/8.0.0": { 302 | "type": "package", 303 | "serviceable": true, 304 | "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", 305 | "path": "microsoft.extensions.fileproviders.physical/8.0.0", 306 | "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512" 307 | }, 308 | "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { 309 | "type": "package", 310 | "serviceable": true, 311 | "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", 312 | "path": "microsoft.extensions.filesystemglobbing/8.0.0", 313 | "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512" 314 | }, 315 | "Microsoft.Extensions.Primitives/8.0.0": { 316 | "type": "package", 317 | "serviceable": true, 318 | "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", 319 | "path": "microsoft.extensions.primitives/8.0.0", 320 | "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" 321 | }, 322 | "Microsoft.NETCore.Platforms/3.1.0": { 323 | "type": "package", 324 | "serviceable": true, 325 | "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", 326 | "path": "microsoft.netcore.platforms/3.1.0", 327 | "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" 328 | }, 329 | "Microsoft.Win32.Registry/4.7.0": { 330 | "type": "package", 331 | "serviceable": true, 332 | "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", 333 | "path": "microsoft.win32.registry/4.7.0", 334 | "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" 335 | }, 336 | "runtime.native.System.Data.SqlClient.sni/4.7.0": { 337 | "type": "package", 338 | "serviceable": true, 339 | "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", 340 | "path": "runtime.native.system.data.sqlclient.sni/4.7.0", 341 | "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" 342 | }, 343 | "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { 344 | "type": "package", 345 | "serviceable": true, 346 | "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", 347 | "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", 348 | "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" 349 | }, 350 | "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { 351 | "type": "package", 352 | "serviceable": true, 353 | "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", 354 | "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", 355 | "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" 356 | }, 357 | "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { 358 | "type": "package", 359 | "serviceable": true, 360 | "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", 361 | "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", 362 | "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" 363 | }, 364 | "System.Configuration.ConfigurationManager/8.0.0": { 365 | "type": "package", 366 | "serviceable": true, 367 | "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", 368 | "path": "system.configuration.configurationmanager/8.0.0", 369 | "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" 370 | }, 371 | "System.Data.SqlClient/4.8.5": { 372 | "type": "package", 373 | "serviceable": true, 374 | "sha512": "sha512-fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==", 375 | "path": "system.data.sqlclient/4.8.5", 376 | "hashPath": "system.data.sqlclient.4.8.5.nupkg.sha512" 377 | }, 378 | "System.Diagnostics.EventLog/8.0.0": { 379 | "type": "package", 380 | "serviceable": true, 381 | "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", 382 | "path": "system.diagnostics.eventlog/8.0.0", 383 | "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512" 384 | }, 385 | "System.Security.AccessControl/4.7.0": { 386 | "type": "package", 387 | "serviceable": true, 388 | "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", 389 | "path": "system.security.accesscontrol/4.7.0", 390 | "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" 391 | }, 392 | "System.Security.Cryptography.ProtectedData/8.0.0": { 393 | "type": "package", 394 | "serviceable": true, 395 | "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", 396 | "path": "system.security.cryptography.protecteddata/8.0.0", 397 | "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" 398 | }, 399 | "System.Security.Principal.Windows/4.7.0": { 400 | "type": "package", 401 | "serviceable": true, 402 | "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", 403 | "path": "system.security.principal.windows/4.7.0", 404 | "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" 405 | }, 406 | "System.Text.Encodings.Web/8.0.0": { 407 | "type": "package", 408 | "serviceable": true, 409 | "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", 410 | "path": "system.text.encodings.web/8.0.0", 411 | "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" 412 | }, 413 | "System.Text.Json/8.0.0": { 414 | "type": "package", 415 | "serviceable": true, 416 | "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", 417 | "path": "system.text.json/8.0.0", 418 | "hashPath": "system.text.json.8.0.0.nupkg.sha512" 419 | } 420 | } 421 | } -------------------------------------------------------------------------------- /BLEmployeeManagementSystem/bin/Debug/net7.0/BLEmployeeManagementSystem.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v7.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v7.0": { 9 | "BLEmployeeManagementSystem/1.0.0": { 10 | "dependencies": { 11 | "DLEmployeeManagementSystem": "1.0.0" 12 | }, 13 | "runtime": { 14 | "BLEmployeeManagementSystem.dll": {} 15 | } 16 | }, 17 | "Microsoft.Extensions.Configuration/8.0.0": { 18 | "dependencies": { 19 | "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", 20 | "Microsoft.Extensions.Primitives": "8.0.0" 21 | }, 22 | "runtime": { 23 | "lib/net7.0/Microsoft.Extensions.Configuration.dll": { 24 | "assemblyVersion": "8.0.0.0", 25 | "fileVersion": "8.0.23.53103" 26 | } 27 | } 28 | }, 29 | "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { 30 | "dependencies": { 31 | "Microsoft.Extensions.Primitives": "8.0.0" 32 | }, 33 | "runtime": { 34 | "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { 35 | "assemblyVersion": "8.0.0.0", 36 | "fileVersion": "8.0.23.53103" 37 | } 38 | } 39 | }, 40 | "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { 41 | "dependencies": { 42 | "Microsoft.Extensions.Configuration": "8.0.0", 43 | "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", 44 | "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", 45 | "Microsoft.Extensions.FileProviders.Physical": "8.0.0", 46 | "Microsoft.Extensions.Primitives": "8.0.0" 47 | }, 48 | "runtime": { 49 | "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { 50 | "assemblyVersion": "8.0.0.0", 51 | "fileVersion": "8.0.23.53103" 52 | } 53 | } 54 | }, 55 | "Microsoft.Extensions.Configuration.Json/8.0.0": { 56 | "dependencies": { 57 | "Microsoft.Extensions.Configuration": "8.0.0", 58 | "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", 59 | "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", 60 | "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", 61 | "System.Text.Json": "8.0.0" 62 | }, 63 | "runtime": { 64 | "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": { 65 | "assemblyVersion": "8.0.0.0", 66 | "fileVersion": "8.0.23.53103" 67 | } 68 | } 69 | }, 70 | "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { 71 | "dependencies": { 72 | "Microsoft.Extensions.Primitives": "8.0.0" 73 | }, 74 | "runtime": { 75 | "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { 76 | "assemblyVersion": "8.0.0.0", 77 | "fileVersion": "8.0.23.53103" 78 | } 79 | } 80 | }, 81 | "Microsoft.Extensions.FileProviders.Physical/8.0.0": { 82 | "dependencies": { 83 | "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", 84 | "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", 85 | "Microsoft.Extensions.Primitives": "8.0.0" 86 | }, 87 | "runtime": { 88 | "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": { 89 | "assemblyVersion": "8.0.0.0", 90 | "fileVersion": "8.0.23.53103" 91 | } 92 | } 93 | }, 94 | "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { 95 | "runtime": { 96 | "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": { 97 | "assemblyVersion": "8.0.0.0", 98 | "fileVersion": "8.0.23.53103" 99 | } 100 | } 101 | }, 102 | "Microsoft.Extensions.Primitives/8.0.0": { 103 | "runtime": { 104 | "lib/net7.0/Microsoft.Extensions.Primitives.dll": { 105 | "assemblyVersion": "8.0.0.0", 106 | "fileVersion": "8.0.23.53103" 107 | } 108 | } 109 | }, 110 | "Microsoft.NETCore.Platforms/3.1.0": {}, 111 | "Microsoft.Win32.Registry/4.7.0": { 112 | "dependencies": { 113 | "System.Security.AccessControl": "4.7.0", 114 | "System.Security.Principal.Windows": "4.7.0" 115 | } 116 | }, 117 | "runtime.native.System.Data.SqlClient.sni/4.7.0": { 118 | "dependencies": { 119 | "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", 120 | "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", 121 | "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" 122 | } 123 | }, 124 | "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { 125 | "runtimeTargets": { 126 | "runtimes/win-arm64/native/sni.dll": { 127 | "rid": "win-arm64", 128 | "assetType": "native", 129 | "fileVersion": "4.6.25512.1" 130 | } 131 | } 132 | }, 133 | "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { 134 | "runtimeTargets": { 135 | "runtimes/win-x64/native/sni.dll": { 136 | "rid": "win-x64", 137 | "assetType": "native", 138 | "fileVersion": "4.6.25512.1" 139 | } 140 | } 141 | }, 142 | "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { 143 | "runtimeTargets": { 144 | "runtimes/win-x86/native/sni.dll": { 145 | "rid": "win-x86", 146 | "assetType": "native", 147 | "fileVersion": "4.6.25512.1" 148 | } 149 | } 150 | }, 151 | "System.Configuration.ConfigurationManager/8.0.0": { 152 | "dependencies": { 153 | "System.Diagnostics.EventLog": "8.0.0", 154 | "System.Security.Cryptography.ProtectedData": "8.0.0" 155 | }, 156 | "runtime": { 157 | "lib/net7.0/System.Configuration.ConfigurationManager.dll": { 158 | "assemblyVersion": "8.0.0.0", 159 | "fileVersion": "8.0.23.53103" 160 | } 161 | } 162 | }, 163 | "System.Data.SqlClient/4.8.5": { 164 | "dependencies": { 165 | "Microsoft.Win32.Registry": "4.7.0", 166 | "System.Security.Principal.Windows": "4.7.0", 167 | "runtime.native.System.Data.SqlClient.sni": "4.7.0" 168 | }, 169 | "runtime": { 170 | "lib/netcoreapp2.1/System.Data.SqlClient.dll": { 171 | "assemblyVersion": "4.6.1.5", 172 | "fileVersion": "4.700.22.51706" 173 | } 174 | }, 175 | "runtimeTargets": { 176 | "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { 177 | "rid": "unix", 178 | "assetType": "runtime", 179 | "assemblyVersion": "4.6.1.5", 180 | "fileVersion": "4.700.22.51706" 181 | }, 182 | "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { 183 | "rid": "win", 184 | "assetType": "runtime", 185 | "assemblyVersion": "4.6.1.5", 186 | "fileVersion": "4.700.22.51706" 187 | } 188 | } 189 | }, 190 | "System.Diagnostics.EventLog/8.0.0": { 191 | "runtime": { 192 | "lib/net7.0/System.Diagnostics.EventLog.dll": { 193 | "assemblyVersion": "8.0.0.0", 194 | "fileVersion": "8.0.23.53103" 195 | } 196 | }, 197 | "runtimeTargets": { 198 | "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": { 199 | "rid": "win", 200 | "assetType": "runtime", 201 | "assemblyVersion": "8.0.0.0", 202 | "fileVersion": "0.0.0.0" 203 | }, 204 | "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": { 205 | "rid": "win", 206 | "assetType": "runtime", 207 | "assemblyVersion": "8.0.0.0", 208 | "fileVersion": "8.0.23.53103" 209 | } 210 | } 211 | }, 212 | "System.Security.AccessControl/4.7.0": { 213 | "dependencies": { 214 | "Microsoft.NETCore.Platforms": "3.1.0", 215 | "System.Security.Principal.Windows": "4.7.0" 216 | } 217 | }, 218 | "System.Security.Cryptography.ProtectedData/8.0.0": { 219 | "runtime": { 220 | "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { 221 | "assemblyVersion": "8.0.0.0", 222 | "fileVersion": "8.0.23.53103" 223 | } 224 | } 225 | }, 226 | "System.Security.Principal.Windows/4.7.0": {}, 227 | "System.Text.Encodings.Web/8.0.0": { 228 | "runtime": { 229 | "lib/net7.0/System.Text.Encodings.Web.dll": { 230 | "assemblyVersion": "8.0.0.0", 231 | "fileVersion": "8.0.23.53103" 232 | } 233 | }, 234 | "runtimeTargets": { 235 | "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { 236 | "rid": "browser", 237 | "assetType": "runtime", 238 | "assemblyVersion": "8.0.0.0", 239 | "fileVersion": "8.0.23.53103" 240 | } 241 | } 242 | }, 243 | "System.Text.Json/8.0.0": { 244 | "dependencies": { 245 | "System.Text.Encodings.Web": "8.0.0" 246 | }, 247 | "runtime": { 248 | "lib/net7.0/System.Text.Json.dll": { 249 | "assemblyVersion": "8.0.0.0", 250 | "fileVersion": "8.0.23.53103" 251 | } 252 | } 253 | }, 254 | "DLEmployeeManagementSystem/1.0.0": { 255 | "dependencies": { 256 | "Microsoft.Extensions.Configuration": "8.0.0", 257 | "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", 258 | "Microsoft.Extensions.Configuration.Json": "8.0.0", 259 | "System.Configuration.ConfigurationManager": "8.0.0", 260 | "System.Data.SqlClient": "4.8.5" 261 | }, 262 | "runtime": { 263 | "DLEmployeeManagementSystem.dll": {} 264 | } 265 | } 266 | } 267 | }, 268 | "libraries": { 269 | "BLEmployeeManagementSystem/1.0.0": { 270 | "type": "project", 271 | "serviceable": false, 272 | "sha512": "" 273 | }, 274 | "Microsoft.Extensions.Configuration/8.0.0": { 275 | "type": "package", 276 | "serviceable": true, 277 | "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", 278 | "path": "microsoft.extensions.configuration/8.0.0", 279 | "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512" 280 | }, 281 | "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { 282 | "type": "package", 283 | "serviceable": true, 284 | "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", 285 | "path": "microsoft.extensions.configuration.abstractions/8.0.0", 286 | "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" 287 | }, 288 | "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { 289 | "type": "package", 290 | "serviceable": true, 291 | "sha512": "sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", 292 | "path": "microsoft.extensions.configuration.fileextensions/8.0.0", 293 | "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512" 294 | }, 295 | "Microsoft.Extensions.Configuration.Json/8.0.0": { 296 | "type": "package", 297 | "serviceable": true, 298 | "sha512": "sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", 299 | "path": "microsoft.extensions.configuration.json/8.0.0", 300 | "hashPath": "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512" 301 | }, 302 | "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { 303 | "type": "package", 304 | "serviceable": true, 305 | "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", 306 | "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", 307 | "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512" 308 | }, 309 | "Microsoft.Extensions.FileProviders.Physical/8.0.0": { 310 | "type": "package", 311 | "serviceable": true, 312 | "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", 313 | "path": "microsoft.extensions.fileproviders.physical/8.0.0", 314 | "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512" 315 | }, 316 | "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { 317 | "type": "package", 318 | "serviceable": true, 319 | "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", 320 | "path": "microsoft.extensions.filesystemglobbing/8.0.0", 321 | "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512" 322 | }, 323 | "Microsoft.Extensions.Primitives/8.0.0": { 324 | "type": "package", 325 | "serviceable": true, 326 | "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", 327 | "path": "microsoft.extensions.primitives/8.0.0", 328 | "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" 329 | }, 330 | "Microsoft.NETCore.Platforms/3.1.0": { 331 | "type": "package", 332 | "serviceable": true, 333 | "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", 334 | "path": "microsoft.netcore.platforms/3.1.0", 335 | "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" 336 | }, 337 | "Microsoft.Win32.Registry/4.7.0": { 338 | "type": "package", 339 | "serviceable": true, 340 | "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", 341 | "path": "microsoft.win32.registry/4.7.0", 342 | "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" 343 | }, 344 | "runtime.native.System.Data.SqlClient.sni/4.7.0": { 345 | "type": "package", 346 | "serviceable": true, 347 | "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", 348 | "path": "runtime.native.system.data.sqlclient.sni/4.7.0", 349 | "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" 350 | }, 351 | "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { 352 | "type": "package", 353 | "serviceable": true, 354 | "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", 355 | "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", 356 | "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" 357 | }, 358 | "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { 359 | "type": "package", 360 | "serviceable": true, 361 | "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", 362 | "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", 363 | "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" 364 | }, 365 | "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { 366 | "type": "package", 367 | "serviceable": true, 368 | "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", 369 | "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", 370 | "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" 371 | }, 372 | "System.Configuration.ConfigurationManager/8.0.0": { 373 | "type": "package", 374 | "serviceable": true, 375 | "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", 376 | "path": "system.configuration.configurationmanager/8.0.0", 377 | "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" 378 | }, 379 | "System.Data.SqlClient/4.8.5": { 380 | "type": "package", 381 | "serviceable": true, 382 | "sha512": "sha512-fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==", 383 | "path": "system.data.sqlclient/4.8.5", 384 | "hashPath": "system.data.sqlclient.4.8.5.nupkg.sha512" 385 | }, 386 | "System.Diagnostics.EventLog/8.0.0": { 387 | "type": "package", 388 | "serviceable": true, 389 | "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", 390 | "path": "system.diagnostics.eventlog/8.0.0", 391 | "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512" 392 | }, 393 | "System.Security.AccessControl/4.7.0": { 394 | "type": "package", 395 | "serviceable": true, 396 | "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", 397 | "path": "system.security.accesscontrol/4.7.0", 398 | "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" 399 | }, 400 | "System.Security.Cryptography.ProtectedData/8.0.0": { 401 | "type": "package", 402 | "serviceable": true, 403 | "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", 404 | "path": "system.security.cryptography.protecteddata/8.0.0", 405 | "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" 406 | }, 407 | "System.Security.Principal.Windows/4.7.0": { 408 | "type": "package", 409 | "serviceable": true, 410 | "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", 411 | "path": "system.security.principal.windows/4.7.0", 412 | "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" 413 | }, 414 | "System.Text.Encodings.Web/8.0.0": { 415 | "type": "package", 416 | "serviceable": true, 417 | "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", 418 | "path": "system.text.encodings.web/8.0.0", 419 | "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" 420 | }, 421 | "System.Text.Json/8.0.0": { 422 | "type": "package", 423 | "serviceable": true, 424 | "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", 425 | "path": "system.text.json/8.0.0", 426 | "hashPath": "system.text.json.8.0.0.nupkg.sha512" 427 | }, 428 | "DLEmployeeManagementSystem/1.0.0": { 429 | "type": "project", 430 | "serviceable": false, 431 | "sha512": "" 432 | } 433 | } 434 | } --------------------------------------------------------------------------------