diff --git a/.vs/StaffHelper/DesignTimeBuild/.dtbcache.v2 b/.vs/StaffHelper/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..d9e6ffa Binary files /dev/null and b/.vs/StaffHelper/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/StaffHelper/config/applicationhost.config b/.vs/StaffHelper/config/applicationhost.config new file mode 100644 index 0000000..208e141 --- /dev/null +++ b/.vs/StaffHelper/config/applicationhost.config @@ -0,0 +1,999 @@ + + + + + + +
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.vs/StaffHelper/project-colors.json b/.vs/StaffHelper/project-colors.json index 482d5cc..9eff95b 100644 --- a/.vs/StaffHelper/project-colors.json +++ b/.vs/StaffHelper/project-colors.json @@ -20,7 +20,17 @@ "ProjectGuid": "e2fa64e5-0ece-4b27-ab71-cb4addbcac52", "DisplayName": "StaffHelper.API", "ColorIndex": 3 + }, + "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { + "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", + "DisplayName": "Miscellaneous Files", + "ColorIndex": -1 + }, + "605c879f-7568-469a-9c44-a8c5423af163": { + "ProjectGuid": "605c879f-7568-469a-9c44-a8c5423af163", + "DisplayName": "StaffHelper.Service", + "ColorIndex": 4 } }, - "NextColorIndex": 4 + "NextColorIndex": 5 } \ No newline at end of file diff --git a/.vs/StaffHelper/v17/.futdcache.v1 b/.vs/StaffHelper/v17/.futdcache.v1 new file mode 100644 index 0000000..f72aa6b Binary files /dev/null and b/.vs/StaffHelper/v17/.futdcache.v1 differ diff --git a/.vs/StaffHelper/v17/.suo b/.vs/StaffHelper/v17/.suo index d5a3c9b..3903eac 100644 Binary files a/.vs/StaffHelper/v17/.suo and b/.vs/StaffHelper/v17/.suo differ diff --git a/StaffHelper.API/Controllers/CompanyController.cs b/StaffHelper.API/Controllers/CompanyController.cs new file mode 100644 index 0000000..0213094 --- /dev/null +++ b/StaffHelper.API/Controllers/CompanyController.cs @@ -0,0 +1,124 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using StaffHelper.Service.Interfaces; +using System.Threading.Tasks; + +namespace StaffHelper.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class CompanyController : ControllerBase + { + private readonly ICompanyService _companyService; + + public CompanyController(ICompanyService companyService) + { + _companyService = companyService; + } + /// + /// "Create Company" + /// + /// + /// + [HttpPost("CreateCompany")] + public async Task CreateCompany(CreateCompanyViewModel model) + { + var response = await _companyService.CreateCompany(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "Get All" + /// + /// + [HttpGet("GetAll")] + public async Task GetAll() + { + var response = await _companyService.GetAll(); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "Get By RcNo" + /// + /// + /// + [HttpGet("GetByRcNo")] + public async Task GetByRcNo(CreateCompanyViewModel model) + { + var response = await _companyService.GetByRcNo(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + + } + /// + /// "Get By Name" + /// + /// + /// + [HttpGet("GetByName")] + public async Task GetByName(CreateCompanyViewModel model) + { + var response = await _companyService.GetByName(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "Get By Address" + /// + /// + /// + [HttpGet("GetByAddress")] + public async Task GetByAddress(CreateCompanyViewModel model) + { + var response = await _companyService.GetByAddress(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "Update Company" + /// + /// + /// + [HttpPut("UpdateCompany")] + public async Task UpdateCompany(UpdateCompanyViewModel model) + { + var response = await _companyService.UpdateCompany(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "SoftDelete Company" + /// + /// + /// + [HttpDelete("SoftDeleteCompany")] + public async Task SoftDeleteCompany(CreateCompanyViewModel model) + { + var response = await _companyService.SoftDeleteCompany(model); + + return Ok(response); + } + + } +} diff --git a/StaffHelper.API/Controllers/CompanyRoleController.cs b/StaffHelper.API/Controllers/CompanyRoleController.cs new file mode 100644 index 0000000..78ac752 --- /dev/null +++ b/StaffHelper.API/Controllers/CompanyRoleController.cs @@ -0,0 +1,111 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using StaffHelper.Service.Interfaces; +using System.Threading.Tasks; + +namespace StaffHelper.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class CompanyRoleController : ControllerBase + { + private readonly ICompanyRoleService _companyRoleService; + + public CompanyRoleController(ICompanyRoleService companyRoleService) + { + _companyRoleService = companyRoleService; + } + + /// + /// "Create CompanyRole" + /// + /// + /// + [HttpPost("CreateCompanyRole")] + public async Task CreateCompanyRole(CreateCompanyRoleViewModel model) + { + var response = await _companyRoleService.CreateCompanyRole(model); + if (response == null) + { + return BadRequest(response); + } + return Ok(response); + } + /// + /// "Get All" + /// + /// + [HttpGet("GetAll")] + public async Task GetAll() + { + var response = await _companyRoleService.GetAll(); + if (response == null) + { + return BadRequest(response); + } + return Ok(response); + } + + /// + /// "Get By CompanyId" + /// + /// + /// + [HttpGet("GetByCompanyId")] + public async Task GetByCompanyId(CreateCompanyRoleViewModel model) + { + var response = await _companyRoleService.GetByCompanyId(model); + if (response == null) + { + return BadRequest(response); + } + return Ok(response); + } + + /// + /// "Get By RoleId" + /// + /// + /// + [HttpGet("GetByRoleId")] + public async Task GetByRoleId(CreateCompanyRoleViewModel model) + { + var response = await _companyRoleService.GetByRoleId(model); + if (response == null) + { + return BadRequest(response); + } + return Ok(response); + } + /// + /// "Update CompanyRole" + /// + /// + /// + [HttpPut("UpdateCompanyRole")] + public async Task UpdateCompanyRole(UpdateCompanyRoleViewModel model) + { + var response = await _companyRoleService.UpdateCompanyRole(model); + if (response == null) + { + return BadRequest(response); + } + return Ok(response); + } + /// + /// "SoftDelete ComapanyRole" + /// + /// + /// + [HttpDelete("SoftDeleteCompanyRole")] + public async Task SoftDeleteCompanyRole(CreateCompanyRoleViewModel model) + { + var response = await _companyRoleService.SoftDeleteCompanyRole(model); + + return Ok(response); + } + + } +} diff --git a/StaffHelper.API/Controllers/CompanyUnitController.cs b/StaffHelper.API/Controllers/CompanyUnitController.cs new file mode 100644 index 0000000..b6a545d --- /dev/null +++ b/StaffHelper.API/Controllers/CompanyUnitController.cs @@ -0,0 +1,112 @@ +using Microsoft.AspNetCore.Mvc; +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using StaffHelper.Service.Interfaces; +using System.Threading.Tasks; + +namespace StaffHelper.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class CompanyUnitController : ControllerBase + { + private readonly ICompanyUnitService _companyUnitService; + + public CompanyUnitController(ICompanyUnitService companyUnitService) + { + _companyUnitService = companyUnitService; + } + + /// + /// "Create CompanyUnit" + /// + /// + /// + [HttpPost("CreateCompanyUnit")] + public async Task CreateCompanyUnit(CreateCompanyUnitViewModel model) + { + var response = await _companyUnitService.CreateCompanyUnit(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "Get All" + /// + /// + [HttpGet("GetAll")] + public async Task GetAll() + { + var response = await _companyUnitService.GetAll(); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + + /// + /// "Get By ComapanyId" + /// + /// + /// + [HttpGet("GetByCompanyId")] + public async Task GetByCompanyId(CreateCompanyUnitViewModel model) + { + var response = await _companyUnitService.GetByCompanyId(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "Get By Name" + /// + /// + /// + [HttpGet("GetByName")] + public async Task GetByName(CreateCompanyUnitViewModel model) + { + var response = await _companyUnitService.GetByName(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "Update CompanyUnit" + /// + /// + /// + [HttpPut("UpdateCompanyUnit")] + public async Task UpdateCompanyUnit(UpdateCompanyUnitViewModel model) + { + var response = await _companyUnitService.UpdateCompanyUnit(model); + if (response == null) + { + return BadRequest(response); + } + else return Ok(response); + } + /// + /// "SoftDelete CompanyUnit" + /// + /// + /// + [HttpDelete("SoftDeleteCompanyUnit")] + public async Task SoftDeleteCompanyUnit(CreateCompanyUnitViewModel model) + { + var response = await _companyUnitService.SoftDeleteCompanyUnit(model); + + return Ok(response); + } + + + + + } +} diff --git a/StaffHelper.API/StaffHelper.API.csproj b/StaffHelper.API/StaffHelper.API.csproj index 5f9c473..95c80c5 100644 --- a/StaffHelper.API/StaffHelper.API.csproj +++ b/StaffHelper.API/StaffHelper.API.csproj @@ -13,12 +13,9 @@ - - - - + diff --git a/StaffHelper.API/StaffHelper.API.csproj.user b/StaffHelper.API/StaffHelper.API.csproj.user new file mode 100644 index 0000000..e4f6e71 --- /dev/null +++ b/StaffHelper.API/StaffHelper.API.csproj.user @@ -0,0 +1,7 @@ + + + + MvcControllerEmptyScaffolder + root/Common/MVC/Controller + + \ No newline at end of file diff --git a/StaffHelper.API/Startup.cs b/StaffHelper.API/Startup.cs index 88d423c..ffc0e0c 100644 --- a/StaffHelper.API/Startup.cs +++ b/StaffHelper.API/Startup.cs @@ -1,18 +1,11 @@ using Arch.EntityFrameworkCore.UnitOfWork; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; -using Microsoft.AspNetCore.HttpsPolicy; -using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; using StaffHelper.Migrations; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; namespace StaffHelper.API { @@ -32,6 +25,7 @@ public void ConfigureServices(IServiceCollection services) //Database Configuration services.AddDbContext(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"))).AddUnitOfWork(); + } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.deps.json b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.deps.json index bb2e8f0..2ae12fb 100644 --- a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.deps.json +++ b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.deps.json @@ -37,6 +37,7 @@ "Microsoft.EntityFrameworkCore.Tools": "3.1.10", "Microsoft.EntityFrameworkCore.UnitOfWork": "3.1.0", "StaffHelper.Migrations": "1.0.0", + "StaffHelper.Service": "1.0.0", "Swashbuckle.AspNetCore": "5.6.3", "Microsoft.AspNetCore.Antiforgery": "3.1.0.0", "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0", @@ -1449,6 +1450,18 @@ "StaffHelper.Model.dll": {} } }, + "StaffHelper.Service/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.UnitOfWork": "3.1.0", + "StaffHelper.Model": "1.0.0" + }, + "runtime": { + "StaffHelper.Service.dll": {} + }, + "compile": { + "StaffHelper.Service.dll": {} + } + }, "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { "compile": { "Microsoft.AspNetCore.Antiforgery.dll": {} @@ -3830,6 +3843,11 @@ "serviceable": false, "sha512": "" }, + "StaffHelper.Service/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { "type": "referenceassembly", "serviceable": false, diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.dll b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.dll index 9776993..f5cd18d 100644 Binary files a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.dll and b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.dll differ diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.pdb b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.pdb index 21f9221..09480bd 100644 Binary files a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.pdb and b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.pdb differ diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.runtimeconfig.dev.json b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.runtimeconfig.dev.json index 137479f..ce17604 100644 --- a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.runtimeconfig.dev.json +++ b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.API.runtimeconfig.dev.json @@ -1,9 +1,8 @@ { "runtimeOptions": { "additionalProbingPaths": [ - "C:\\Users\\Habeebullah\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Habeebullah\\.nuget\\packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + "C:\\Users\\Sumayya Uthman\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages" ] } } \ No newline at end of file diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.dll b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.dll index 2a6edb3..ebbd10b 100644 Binary files a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.dll and b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.dll differ diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb index 33ab1b4..cc8c817 100644 Binary files a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb and b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb differ diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll index 1399054..dc39587 100644 Binary files a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll and b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll differ diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb index eaa85ee..e5e173e 100644 Binary files a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb and b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb differ diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Service.dll b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Service.dll new file mode 100644 index 0000000..8385f6b Binary files /dev/null and b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Service.dll differ diff --git a/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Service.pdb b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Service.pdb new file mode 100644 index 0000000..a77f6c9 Binary files /dev/null and b/StaffHelper.API/bin/Debug/netcoreapp3.1/StaffHelper.Service.pdb differ diff --git a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.GeneratedMSBuildEditorConfig.editorconfig b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.GeneratedMSBuildEditorConfig.editorconfig index 7d110ee..4c6bd18 100644 --- a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.GeneratedMSBuildEditorConfig.editorconfig +++ b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.GeneratedMSBuildEditorConfig.editorconfig @@ -1,3 +1,3 @@ is_global = true build_property.RootNamespace = StaffHelper.API -build_property.ProjectDir = C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.API\ +build_property.ProjectDir = C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\ diff --git a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.assets.cache b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.assets.cache index 40c966f..7693af9 100644 Binary files a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.assets.cache and b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.assets.cache differ diff --git a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.AssemblyReference.cache b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.AssemblyReference.cache index ae5106e..f6b74df 100644 Binary files a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.AssemblyReference.cache and b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.AssemblyReference.cache differ diff --git a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.CoreCompileInputs.cache b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.CoreCompileInputs.cache index 16d1b4d..6f797d2 100644 --- a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.CoreCompileInputs.cache +++ b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -6f7317c84c725f42947b5cce06c3e495539814db +2a705d057fc49c6903ecf8c0eaaed362f9ad8d9f diff --git a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.FileListAbsolute.txt b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.FileListAbsolute.txt index b23658a..447a3b9 100644 --- a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.FileListAbsolute.txt +++ b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.csproj.FileListAbsolute.txt @@ -69,3 +69,76 @@ C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.API\obj\Debug\netco C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.dll C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.pdb C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.genruntimeconfig.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\appsettings.Development.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\appsettings.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.API.exe +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.API.deps.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.API.runtimeconfig.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.API.runtimeconfig.dev.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.API.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.API.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Data.SqlClient.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.AutoHistory.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.SqlServer.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.UnitOfWork.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.Identity.Client.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Logging.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Tokens.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Microsoft.OpenApi.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\System.IdentityModel.Tokens.Jwt.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\System.Runtime.Caching.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.Migrations.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.Model.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.Service.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.Migrations.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.Service.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\bin\Debug\netcoreapp3.1\StaffHelper.Model.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.csproj.AssemblyReference.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.AssemblyInfoInputs.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.AssemblyInfo.cs +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.csproj.CoreCompileInputs.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.MvcApplicationPartsAssemblyInfo.cs +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.MvcApplicationPartsAssemblyInfo.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\staticwebassets\StaffHelper.API.StaticWebAssets.Manifest.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.RazorTargetAssemblyInfo.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.csproj.CopyComplete +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.API\obj\Debug\netcoreapp3.1\StaffHelper.API.genruntimeconfig.cache diff --git a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.dll b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.dll index 9776993..f5cd18d 100644 Binary files a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.dll and b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.dll differ diff --git a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.genruntimeconfig.cache b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.genruntimeconfig.cache index 9fb55b2..bf23c04 100644 --- a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.genruntimeconfig.cache +++ b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.genruntimeconfig.cache @@ -1 +1 @@ -2b1d4c13b380ef8a5b7f9aa90ca298d417600400 +b654e59b50f355ef4cea4414f6d12ccd25785313 diff --git a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.pdb b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.pdb index 21f9221..09480bd 100644 Binary files a/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.pdb and b/StaffHelper.API/obj/Debug/netcoreapp3.1/StaffHelper.API.pdb differ diff --git a/StaffHelper.API/obj/StaffHelper.API.csproj.nuget.dgspec.json b/StaffHelper.API/obj/StaffHelper.API.csproj.nuget.dgspec.json index 8cbc090..322d722 100644 --- a/StaffHelper.API/obj/StaffHelper.API.csproj.nuget.dgspec.json +++ b/StaffHelper.API/obj/StaffHelper.API.csproj.nuget.dgspec.json @@ -1,23 +1,20 @@ { "format": 1, "restore": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj": {} + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj": {} }, "projects": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", "projectName": "StaffHelper.API", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -31,8 +28,11 @@ "netcoreapp3.1": { "targetAlias": "netcoreapp3.1", "projectReferences": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": { - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj" + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj" + }, + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj" } } } @@ -100,20 +100,17 @@ } } }, - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", "projectName": "StaffHelper.Migrations", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -127,8 +124,8 @@ "netcoreapp3.1": { "targetAlias": "netcoreapp3.1", "projectReferences": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" } } } @@ -175,20 +172,17 @@ } } }, - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", "projectName": "StaffHelper.Model", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -231,6 +225,70 @@ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" } } + }, + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj", + "projectName": "StaffHelper.Service", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore.UnitOfWork": { + "target": "Package", + "version": "[3.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } } } } \ No newline at end of file diff --git a/StaffHelper.API/obj/StaffHelper.API.csproj.nuget.g.props b/StaffHelper.API/obj/StaffHelper.API.csproj.nuget.g.props index bb7132e..a05b461 100644 --- a/StaffHelper.API/obj/StaffHelper.API.csproj.nuget.g.props +++ b/StaffHelper.API/obj/StaffHelper.API.csproj.nuget.g.props @@ -5,13 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Habeebullah\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + C:\Users\Sumayya Uthman\.nuget\packages\ PackageReference 6.0.1 - - + @@ -19,7 +18,7 @@ - C:\Users\Habeebullah\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 - C:\Users\Habeebullah\.nuget\packages\microsoft.entityframeworkcore.tools\3.1.10 + C:\Users\Sumayya Uthman\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + C:\Users\Sumayya Uthman\.nuget\packages\microsoft.entityframeworkcore.tools\3.1.10 \ No newline at end of file diff --git a/StaffHelper.API/obj/project.assets.json b/StaffHelper.API/obj/project.assets.json index 84e3387..46b6a1b 100644 --- a/StaffHelper.API/obj/project.assets.json +++ b/StaffHelper.API/obj/project.assets.json @@ -1543,6 +1543,20 @@ "runtime": { "bin/placeholder/StaffHelper.Model.dll": {} } + }, + "StaffHelper.Service/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore.UnitOfWork": "3.1.0", + "StaffHelper.Model": "1.0.0" + }, + "compile": { + "bin/placeholder/StaffHelper.Service.dll": {} + }, + "runtime": { + "bin/placeholder/StaffHelper.Service.dll": {} + } } } }, @@ -5624,6 +5638,11 @@ "type": "project", "path": "../StaffHelper.Model/StaffHelper.Model.csproj", "msbuildProject": "../StaffHelper.Model/StaffHelper.Model.csproj" + }, + "StaffHelper.Service/1.0.0": { + "type": "project", + "path": "../StaffHelper.Service/StaffHelper.Service.csproj", + "msbuildProject": "../StaffHelper.Service/StaffHelper.Service.csproj" } }, "projectFileDependencyGroups": { @@ -5634,27 +5653,24 @@ "Microsoft.EntityFrameworkCore.Tools >= 3.1.10", "Microsoft.EntityFrameworkCore.UnitOfWork >= 3.1.0", "StaffHelper.Migrations >= 1.0.0", + "StaffHelper.Service >= 1.0.0", "Swashbuckle.AspNetCore >= 5.6.3" ] }, "packageFolders": { - "C:\\Users\\Habeebullah\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", "projectName": "StaffHelper.API", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -5668,8 +5684,11 @@ "netcoreapp3.1": { "targetAlias": "netcoreapp3.1", "projectReferences": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": { - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj" + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj" + }, + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj" } } } diff --git a/StaffHelper.API/obj/project.nuget.cache b/StaffHelper.API/obj/project.nuget.cache index bbb996c..7afc0f3 100644 --- a/StaffHelper.API/obj/project.nuget.cache +++ b/StaffHelper.API/obj/project.nuget.cache @@ -1,117 +1,117 @@ { "version": 2, - "dgSpecHash": "af51XOYNDgzp1+OpL6E9vfUSHqy56AJtWgVE+ympR76Ewc/q97wou7AUdPGIpj65seU03AzkRYodaTKyiXdf5Q==", + "dgSpecHash": "7Y7T70JsljAeL2/Fz8x1CRhylMAuBtF0+TDdYb8DbSxrFvMfzop++WYxnpUgEruJ3EOEKBBbH33G09ouYqBWCg==", "success": true, - "projectFilePath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", + "projectFilePath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.API\\StaffHelper.API.csproj", "expectedPackageFiles": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.data.sqlclient\\1.1.3\\microsoft.data.sqlclient.1.1.3.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.10\\microsoft.entityframeworkcore.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.10\\microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.10\\microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.autohistory\\3.1.1\\microsoft.entityframeworkcore.autohistory.3.1.1.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.design\\3.1.10\\microsoft.entityframeworkcore.design.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.10\\microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.10\\microsoft.entityframeworkcore.sqlserver.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\3.1.10\\microsoft.entityframeworkcore.tools.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.unitofwork\\3.1.0\\microsoft.entityframeworkcore.unitofwork.3.1.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.10\\microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.10\\microsoft.extensions.caching.memory.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.10\\microsoft.extensions.configuration.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.10\\microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.10\\microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.10\\microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.10\\microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.logging\\3.1.10\\microsoft.extensions.logging.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.10\\microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.options\\3.1.10\\microsoft.extensions.options.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.10\\microsoft.extensions.primitives.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.5.0\\microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.logging\\5.5.0\\microsoft.identitymodel.logging.5.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.5.0\\microsoft.identitymodel.protocols.5.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.5.0\\microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.5.0\\microsoft.identitymodel.tokens.5.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.5.0\\system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.compilerservices.unsafe\\4.5.0\\system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.codepages\\4.5.0\\system.text.encoding.codepages.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\3.1.22\\microsoft.netcore.app.host.win-x64.3.1.22.nupkg.sha512" + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.data.sqlclient\\1.1.3\\microsoft.data.sqlclient.1.1.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.10\\microsoft.entityframeworkcore.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.10\\microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.10\\microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.autohistory\\3.1.1\\microsoft.entityframeworkcore.autohistory.3.1.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.design\\3.1.10\\microsoft.entityframeworkcore.design.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.10\\microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.10\\microsoft.entityframeworkcore.sqlserver.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\3.1.10\\microsoft.entityframeworkcore.tools.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.unitofwork\\3.1.0\\microsoft.entityframeworkcore.unitofwork.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.10\\microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.10\\microsoft.extensions.caching.memory.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.10\\microsoft.extensions.configuration.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.10\\microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.10\\microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.10\\microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.10\\microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.logging\\3.1.10\\microsoft.extensions.logging.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.10\\microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.options\\3.1.10\\microsoft.extensions.options.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.10\\microsoft.extensions.primitives.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.5.0\\microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.logging\\5.5.0\\microsoft.identitymodel.logging.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.5.0\\microsoft.identitymodel.protocols.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.5.0\\microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.5.0\\microsoft.identitymodel.tokens.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.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", + "C:\\Users\\Sumayya Uthman\\.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", + "C:\\Users\\Sumayya Uthman\\.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", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.5.0\\system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.0\\system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.encoding.codepages\\4.5.0\\system.text.encoding.codepages.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\3.1.22\\microsoft.netcore.app.host.win-x64.3.1.22.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.dll b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.dll index 2a6edb3..ebbd10b 100644 Binary files a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.dll and b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.dll differ diff --git a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb index 33ab1b4..cc8c817 100644 Binary files a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb and b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb differ diff --git a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.runtimeconfig.dev.json b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.runtimeconfig.dev.json index 137479f..ce17604 100644 --- a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.runtimeconfig.dev.json +++ b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Migrations.runtimeconfig.dev.json @@ -1,9 +1,8 @@ { "runtimeOptions": { "additionalProbingPaths": [ - "C:\\Users\\Habeebullah\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Habeebullah\\.nuget\\packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + "C:\\Users\\Sumayya Uthman\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages" ] } } \ No newline at end of file diff --git a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll index 1399054..dc39587 100644 Binary files a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll and b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll differ diff --git a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb index eaa85ee..e5e173e 100644 Binary files a/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb and b/StaffHelper.Migrations/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb differ diff --git a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.GeneratedMSBuildEditorConfig.editorconfig b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.GeneratedMSBuildEditorConfig.editorconfig index eefee8e..9e1a7c0 100644 --- a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.GeneratedMSBuildEditorConfig.editorconfig +++ b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.GeneratedMSBuildEditorConfig.editorconfig @@ -1,3 +1,3 @@ is_global = true build_property.RootNamespace = StaffHelper.Migrations -build_property.ProjectDir = C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Migrations\ +build_property.ProjectDir = C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\ diff --git a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.assets.cache b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.assets.cache index d348f44..eec306f 100644 Binary files a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.assets.cache and b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.assets.cache differ diff --git a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.AssemblyReference.cache b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.AssemblyReference.cache index 204fdef..fb76b13 100644 Binary files a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.AssemblyReference.cache and b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.AssemblyReference.cache differ diff --git a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.CoreCompileInputs.cache b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.CoreCompileInputs.cache index 0b79c07..9134d62 100644 --- a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.CoreCompileInputs.cache +++ b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -9a9817479aa749c705fb49b49310c6b573a73931 +b4c6a456e3ceca86e865df3e7a98a9f3c3249d79 diff --git a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.FileListAbsolute.txt b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.FileListAbsolute.txt index 0097c2d..4c0c5e4 100644 --- a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.FileListAbsolute.txt +++ b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.csproj.FileListAbsolute.txt @@ -14,3 +14,19 @@ C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Migrations\obj\Debu C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.dll C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.pdb C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.genruntimeconfig.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\bin\Debug\netcoreapp3.1\StaffHelper.Migrations.deps.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\bin\Debug\netcoreapp3.1\StaffHelper.Migrations.runtimeconfig.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\bin\Debug\netcoreapp3.1\StaffHelper.Migrations.runtimeconfig.dev.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\bin\Debug\netcoreapp3.1\StaffHelper.Migrations.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\bin\Debug\netcoreapp3.1\StaffHelper.Migrations.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\bin\Debug\netcoreapp3.1\StaffHelper.Model.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\bin\Debug\netcoreapp3.1\StaffHelper.Model.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.csproj.AssemblyReference.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.AssemblyInfoInputs.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.AssemblyInfo.cs +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.csproj.CoreCompileInputs.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.csproj.CopyComplete +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Migrations\obj\Debug\netcoreapp3.1\StaffHelper.Migrations.genruntimeconfig.cache diff --git a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.dll b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.dll index 2a6edb3..ebbd10b 100644 Binary files a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.dll and b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.dll differ diff --git a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.genruntimeconfig.cache b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.genruntimeconfig.cache index d758b0d..bd11453 100644 --- a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.genruntimeconfig.cache +++ b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.genruntimeconfig.cache @@ -1 +1 @@ -5062803e06af2070f756ccc06f33c87afbd84317 +8bf6d62e336f4deec5d29ba9487ce5af7372d22f diff --git a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb index 33ab1b4..cc8c817 100644 Binary files a/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb and b/StaffHelper.Migrations/obj/Debug/netcoreapp3.1/StaffHelper.Migrations.pdb differ diff --git a/StaffHelper.Migrations/obj/StaffHelper.Migrations.csproj.nuget.dgspec.json b/StaffHelper.Migrations/obj/StaffHelper.Migrations.csproj.nuget.dgspec.json index b99a018..f12a072 100644 --- a/StaffHelper.Migrations/obj/StaffHelper.Migrations.csproj.nuget.dgspec.json +++ b/StaffHelper.Migrations/obj/StaffHelper.Migrations.csproj.nuget.dgspec.json @@ -1,23 +1,20 @@ { "format": 1, "restore": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": {} + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": {} }, "projects": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", "projectName": "StaffHelper.Migrations", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -31,8 +28,8 @@ "netcoreapp3.1": { "targetAlias": "netcoreapp3.1", "projectReferences": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" } } } @@ -79,20 +76,17 @@ } } }, - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", "projectName": "StaffHelper.Model", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ diff --git a/StaffHelper.Migrations/obj/StaffHelper.Migrations.csproj.nuget.g.props b/StaffHelper.Migrations/obj/StaffHelper.Migrations.csproj.nuget.g.props index 34fef42..a7ba499 100644 --- a/StaffHelper.Migrations/obj/StaffHelper.Migrations.csproj.nuget.g.props +++ b/StaffHelper.Migrations/obj/StaffHelper.Migrations.csproj.nuget.g.props @@ -5,19 +5,18 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Habeebullah\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + C:\Users\Sumayya Uthman\.nuget\packages\ PackageReference 6.0.1 - - + - C:\Program Files\dotnet\sdk\NuGetFallbackFolder\newtonsoft.json\10.0.1 - C:\Users\Habeebullah\.nuget\packages\microsoft.entityframeworkcore.tools\3.1.10 + C:\Users\Sumayya Uthman\.nuget\packages\newtonsoft.json\10.0.1 + C:\Users\Sumayya Uthman\.nuget\packages\microsoft.entityframeworkcore.tools\3.1.10 \ No newline at end of file diff --git a/StaffHelper.Migrations/obj/project.assets.json b/StaffHelper.Migrations/obj/project.assets.json index 7c3c310..e983309 100644 --- a/StaffHelper.Migrations/obj/project.assets.json +++ b/StaffHelper.Migrations/obj/project.assets.json @@ -5767,23 +5767,19 @@ ] }, "packageFolders": { - "C:\\Users\\Habeebullah\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", "projectName": "StaffHelper.Migrations", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -5797,8 +5793,8 @@ "netcoreapp3.1": { "targetAlias": "netcoreapp3.1", "projectReferences": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" } } } diff --git a/StaffHelper.Migrations/obj/project.nuget.cache b/StaffHelper.Migrations/obj/project.nuget.cache index 59c2165..0bd9a9f 100644 --- a/StaffHelper.Migrations/obj/project.nuget.cache +++ b/StaffHelper.Migrations/obj/project.nuget.cache @@ -1,112 +1,112 @@ { "version": 2, - "dgSpecHash": "rUiF8/eGUORQtpp1Ucvn+Y3LQ0ME0/qaV1NN7e6go5mIbYL9VKuFyDCeq5onT436YQomhTK9B/nCSHvd6Pp2Dw==", + "dgSpecHash": "sLnY6wfWQpRGnP7BIYgEIiSW8buu0g0vb1Rr5qw4DWSNRaqJiY5zqLoW/z63U9KbpW6ozDkKmzpaiyOQyb2OBA==", "success": true, - "projectFilePath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", + "projectFilePath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Migrations\\StaffHelper.Migrations.csproj", "expectedPackageFiles": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.data.sqlclient\\1.1.3\\microsoft.data.sqlclient.1.1.3.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.10\\microsoft.entityframeworkcore.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.10\\microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.10\\microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.design\\3.1.10\\microsoft.entityframeworkcore.design.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.10\\microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.10\\microsoft.entityframeworkcore.sqlserver.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\3.1.10\\microsoft.entityframeworkcore.tools.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.10\\microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.10\\microsoft.extensions.caching.memory.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.10\\microsoft.extensions.configuration.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.10\\microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.10\\microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.10\\microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.10\\microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.logging\\3.1.10\\microsoft.extensions.logging.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.10\\microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.options\\3.1.10\\microsoft.extensions.options.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.10\\microsoft.extensions.primitives.3.1.10.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.5.0\\microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.logging\\5.5.0\\microsoft.identitymodel.logging.5.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.5.0\\microsoft.identitymodel.protocols.5.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.5.0\\microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.5.0\\microsoft.identitymodel.tokens.5.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\10.0.1\\newtonsoft.json.10.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.5.0\\system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.compilerservices.unsafe\\4.5.0\\system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", - "C:\\Users\\Habeebullah\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.codepages\\4.5.0\\system.text.encoding.codepages.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.data.sqlclient\\1.1.3\\microsoft.data.sqlclient.1.1.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.10\\microsoft.entityframeworkcore.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.10\\microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.10\\microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.design\\3.1.10\\microsoft.entityframeworkcore.design.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.10\\microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.10\\microsoft.entityframeworkcore.sqlserver.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\3.1.10\\microsoft.entityframeworkcore.tools.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.10\\microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.10\\microsoft.extensions.caching.memory.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.10\\microsoft.extensions.configuration.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.10\\microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.10\\microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.10\\microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.10\\microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.logging\\3.1.10\\microsoft.extensions.logging.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.10\\microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.options\\3.1.10\\microsoft.extensions.options.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.10\\microsoft.extensions.primitives.3.1.10.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.5.0\\microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.logging\\5.5.0\\microsoft.identitymodel.logging.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.5.0\\microsoft.identitymodel.protocols.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.5.0\\microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.5.0\\microsoft.identitymodel.tokens.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\newtonsoft.json\\10.0.1\\newtonsoft.json.10.0.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.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", + "C:\\Users\\Sumayya Uthman\\.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", + "C:\\Users\\Sumayya Uthman\\.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", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.5.0\\system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.0\\system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.encoding.codepages\\4.5.0\\system.text.encoding.codepages.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/StaffHelper.Model/Entities/BaseResponse.cs b/StaffHelper.Model/Entities/BaseResponse.cs new file mode 100644 index 0000000..3983a50 --- /dev/null +++ b/StaffHelper.Model/Entities/BaseResponse.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace StaffHelper.Model.Entities +{ + public class BaseResponse + { + public string Message { get; set; } + + public bool Status { get; set; } + + } +} diff --git a/StaffHelper.Model/StaffHelper.Model.csproj b/StaffHelper.Model/StaffHelper.Model.csproj index e8ff9fa..cb63190 100644 --- a/StaffHelper.Model/StaffHelper.Model.csproj +++ b/StaffHelper.Model/StaffHelper.Model.csproj @@ -4,8 +4,4 @@ netcoreapp3.1 - - - - diff --git a/StaffHelper.Model/ViewModels/BaseModel.cs b/StaffHelper.Model/ViewModels/BaseModel.cs new file mode 100644 index 0000000..c91f024 --- /dev/null +++ b/StaffHelper.Model/ViewModels/BaseModel.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace StaffHelper.Model.ViewModels +{ + public class BaseModel + { + public Guid Id { get; set; } + } +} diff --git a/StaffHelper.Model/ViewModels/CreateCompanyRoleViewModel.cs b/StaffHelper.Model/ViewModels/CreateCompanyRoleViewModel.cs new file mode 100644 index 0000000..e91ec77 --- /dev/null +++ b/StaffHelper.Model/ViewModels/CreateCompanyRoleViewModel.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace StaffHelper.Model.ViewModels +{ + public class CreateCompanyRoleViewModel:BaseModel + { + public string CompanyId { get; set; } + + public string RoleId { get; set; } + + public DateTime CreatedDate { get; set; } + + public bool SoftDelete { get; set; } + } +} diff --git a/StaffHelper.Model/ViewModels/CreateCompanyUnitViewModel.cs b/StaffHelper.Model/ViewModels/CreateCompanyUnitViewModel.cs new file mode 100644 index 0000000..34dbfaa --- /dev/null +++ b/StaffHelper.Model/ViewModels/CreateCompanyUnitViewModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace StaffHelper.Model.ViewModels +{ + public class CreateCompanyUnitViewModel:BaseModel + { + public string CompanyId { get; set; } + + public string Name { get; set; } + + public DateTime CreatedDate { get; set; } + + public bool SoftDelete { get; set; } + + } +} diff --git a/StaffHelper.Model/ViewModels/CreateCompanyViewModel.cs b/StaffHelper.Model/ViewModels/CreateCompanyViewModel.cs new file mode 100644 index 0000000..8a744f8 --- /dev/null +++ b/StaffHelper.Model/ViewModels/CreateCompanyViewModel.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace StaffHelper.Model.ViewModels +{ + public class CreateCompanyViewModel : BaseModel + { + public string Name { get; set; } + + public string Address { get; set; } + + public int RcNo { get; set; } + + public string Website { get; set; } + + public int PhoneNumber { get; set; } + + public string Email { get; set; } + + public DateTime CreatedDate { get; set; } + + public bool SoftDelete { get; set; } + } +} \ No newline at end of file diff --git a/StaffHelper.Model/ViewModels/UpdateCompanyRoleViewModel.cs b/StaffHelper.Model/ViewModels/UpdateCompanyRoleViewModel.cs new file mode 100644 index 0000000..f2ecb9a --- /dev/null +++ b/StaffHelper.Model/ViewModels/UpdateCompanyRoleViewModel.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace StaffHelper.Model.ViewModels +{ + public class UpdateCompanyRoleViewModel:BaseModel + { + public string RoleId { get; set; } + + public DateTime UpdatedDate { get; set; } + } +} diff --git a/StaffHelper.Model/ViewModels/UpdateCompanyUnitViewModel.cs b/StaffHelper.Model/ViewModels/UpdateCompanyUnitViewModel.cs new file mode 100644 index 0000000..ccf9e39 --- /dev/null +++ b/StaffHelper.Model/ViewModels/UpdateCompanyUnitViewModel.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace StaffHelper.Model.ViewModels +{ + public class UpdateCompanyUnitViewModel:BaseModel + { + public string Name { get; set; } + + public DateTime UpdatedDate { get; set; } + + } +} diff --git a/StaffHelper.Model/ViewModels/UpdateCompanyViewModel.cs b/StaffHelper.Model/ViewModels/UpdateCompanyViewModel.cs new file mode 100644 index 0000000..3e86224 --- /dev/null +++ b/StaffHelper.Model/ViewModels/UpdateCompanyViewModel.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace StaffHelper.Model.ViewModels +{ + public class UpdateCompanyViewModel: BaseModel + { + public string Name { get; set; } + public string Address { get; set; } + public string Email { get; set; } + public int PhoneNumber { get; set; } + public DateTime UpdatedDate { get; set; } + } +} diff --git a/StaffHelper.Model/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll b/StaffHelper.Model/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll index 1399054..dc39587 100644 Binary files a/StaffHelper.Model/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll and b/StaffHelper.Model/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll differ diff --git a/StaffHelper.Model/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb b/StaffHelper.Model/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb index eaa85ee..e5e173e 100644 Binary files a/StaffHelper.Model/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb and b/StaffHelper.Model/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb differ diff --git a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.GeneratedMSBuildEditorConfig.editorconfig b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.GeneratedMSBuildEditorConfig.editorconfig index 7302610..3bc99a4 100644 --- a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.GeneratedMSBuildEditorConfig.editorconfig +++ b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.GeneratedMSBuildEditorConfig.editorconfig @@ -1,3 +1,3 @@ is_global = true build_property.RootNamespace = StaffHelper.Model -build_property.ProjectDir = C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Model\ +build_property.ProjectDir = C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\ diff --git a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.assets.cache b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.assets.cache index d77a378..f7c68d3 100644 Binary files a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.assets.cache and b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.assets.cache differ diff --git a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.AssemblyReference.cache b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.AssemblyReference.cache index 204fdef..225e127 100644 Binary files a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.AssemblyReference.cache and b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.AssemblyReference.cache differ diff --git a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.CoreCompileInputs.cache b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.CoreCompileInputs.cache index ca24e10..6ba7836 100644 --- a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.CoreCompileInputs.cache +++ b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -6c1507c0afdabe8439ead2afd2c8d186a338fdae +bc7bc7584ecd3695774d0316f170b0c2365e4247 diff --git a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.FileListAbsolute.txt b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.FileListAbsolute.txt index e1beb39..75a84fb 100644 --- a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.FileListAbsolute.txt +++ b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.csproj.FileListAbsolute.txt @@ -8,3 +8,13 @@ C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Model\obj\Debug\net C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.csproj.CoreCompileInputs.cache C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.dll C:\Users\Habeebullah\Documents\Osise\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\bin\Debug\netcoreapp3.1\StaffHelper.Model.deps.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\bin\Debug\netcoreapp3.1\StaffHelper.Model.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\bin\Debug\netcoreapp3.1\StaffHelper.Model.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.csproj.AssemblyReference.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.AssemblyInfoInputs.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.AssemblyInfo.cs +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.csproj.CoreCompileInputs.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Model\obj\Debug\netcoreapp3.1\StaffHelper.Model.pdb diff --git a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.dll b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.dll index 1399054..dc39587 100644 Binary files a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.dll and b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.dll differ diff --git a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.pdb b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.pdb index eaa85ee..e5e173e 100644 Binary files a/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.pdb and b/StaffHelper.Model/obj/Debug/netcoreapp3.1/StaffHelper.Model.pdb differ diff --git a/StaffHelper.Model/obj/StaffHelper.Model.csproj.nuget.dgspec.json b/StaffHelper.Model/obj/StaffHelper.Model.csproj.nuget.dgspec.json index 8e6fc3b..369e74c 100644 --- a/StaffHelper.Model/obj/StaffHelper.Model.csproj.nuget.dgspec.json +++ b/StaffHelper.Model/obj/StaffHelper.Model.csproj.nuget.dgspec.json @@ -1,23 +1,20 @@ { "format": 1, "restore": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": {} + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": {} }, "projects": { - "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", "projectName": "StaffHelper.Model", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ diff --git a/StaffHelper.Model/obj/StaffHelper.Model.csproj.nuget.g.props b/StaffHelper.Model/obj/StaffHelper.Model.csproj.nuget.g.props index b0e8cc7..e9e0f4d 100644 --- a/StaffHelper.Model/obj/StaffHelper.Model.csproj.nuget.g.props +++ b/StaffHelper.Model/obj/StaffHelper.Model.csproj.nuget.g.props @@ -5,12 +5,11 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Habeebullah\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + C:\Users\Sumayya Uthman\.nuget\packages\ PackageReference 6.0.1 - - + \ No newline at end of file diff --git a/StaffHelper.Model/obj/project.assets.json b/StaffHelper.Model/obj/project.assets.json index f76703e..088c46d 100644 --- a/StaffHelper.Model/obj/project.assets.json +++ b/StaffHelper.Model/obj/project.assets.json @@ -8,23 +8,19 @@ ".NETCoreApp,Version=v3.1": [] }, "packageFolders": { - "C:\\Users\\Habeebullah\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", "projectName": "StaffHelper.Model", - "projectPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", - "packagesPath": "C:\\Users\\Habeebullah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\obj\\", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Habeebullah\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ diff --git a/StaffHelper.Model/obj/project.nuget.cache b/StaffHelper.Model/obj/project.nuget.cache index b0bc682..e056273 100644 --- a/StaffHelper.Model/obj/project.nuget.cache +++ b/StaffHelper.Model/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "klg6d1Q9LctXRgo8uawDjeI3mn0jmdreDBnnP547EnbINcK0sISSX45n1pKeLGYvCgZH5UuGirhJWJEm0y13rQ==", + "dgSpecHash": "oQA5g6Ar2OyI3RGaL6jDNwCztuiqXYvy4Y+/CiOSBtu4Sdx+nVTdkW57jX5NYjiy5Z/jr6iB0WwimnBcL7IXOQ==", "success": true, - "projectFilePath": "C:\\Users\\Habeebullah\\Documents\\Osise\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "projectFilePath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", "expectedPackageFiles": [], "logs": [] } \ No newline at end of file diff --git a/StaffHelper.Service/Interfaces/ICompanyRoleService.cs b/StaffHelper.Service/Interfaces/ICompanyRoleService.cs new file mode 100644 index 0000000..fc1a395 --- /dev/null +++ b/StaffHelper.Service/Interfaces/ICompanyRoleService.cs @@ -0,0 +1,22 @@ +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace StaffHelper.Service.Interfaces +{ + public interface ICompanyRoleService + { + Task CreateCompanyRole(CreateCompanyRoleViewModel model); + + Task> GetAll(); + + Task GetByCompanyId(CreateCompanyRoleViewModel model); + + Task GetByRoleId(CreateCompanyRoleViewModel model); + + Task UpdateCompanyRole(UpdateCompanyRoleViewModel model); + + Task SoftDeleteCompanyRole(CreateCompanyRoleViewModel model); + } +} diff --git a/StaffHelper.Service/Interfaces/ICompanyService.cs b/StaffHelper.Service/Interfaces/ICompanyService.cs new file mode 100644 index 0000000..00665f7 --- /dev/null +++ b/StaffHelper.Service/Interfaces/ICompanyService.cs @@ -0,0 +1,25 @@ +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace StaffHelper.Service.Interfaces +{ + public interface ICompanyService + { + Task> GetAll(); + + Task GetByRcNo(CreateCompanyViewModel model); + + Task GetByName(CreateCompanyViewModel model); + + Task GetByAddress(CreateCompanyViewModel model); + + Task CreateCompany(CreateCompanyViewModel model); + + Task UpdateCompany(UpdateCompanyViewModel model); + + Task SoftDeleteCompany(CreateCompanyViewModel model); + + } +} diff --git a/StaffHelper.Service/Interfaces/ICompanyUnitService.cs b/StaffHelper.Service/Interfaces/ICompanyUnitService.cs new file mode 100644 index 0000000..42e9990 --- /dev/null +++ b/StaffHelper.Service/Interfaces/ICompanyUnitService.cs @@ -0,0 +1,18 @@ +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace StaffHelper.Service.Interfaces +{ + public interface ICompanyUnitService + { + Task> GetAll(); + Task CreateCompanyUnit(CreateCompanyUnitViewModel model); + Task GetByCompanyId(CreateCompanyUnitViewModel model); + Task GetByName(CreateCompanyUnitViewModel model); + Task UpdateCompanyUnit(UpdateCompanyUnitViewModel model); + Task SoftDeleteCompanyUnit(CreateCompanyUnitViewModel model); + + } +} diff --git a/StaffHelper.Service/Services/CompanyRoleService.cs b/StaffHelper.Service/Services/CompanyRoleService.cs new file mode 100644 index 0000000..cff51e8 --- /dev/null +++ b/StaffHelper.Service/Services/CompanyRoleService.cs @@ -0,0 +1,122 @@ +using Arch.EntityFrameworkCore.UnitOfWork; +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using StaffHelper.Service.Interfaces; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace StaffHelper.Service.Services +{ + public class CompanyRoleService: ICompanyRoleService + { + private readonly IUnitOfWork _unitOfwork; + + + public CompanyRoleService(IUnitOfWork unitOfwork) + { + _unitOfwork = unitOfwork; + } + /// + /// "Create CompanyRole" + /// + /// + /// + public async Task CreateCompanyRole(CreateCompanyRoleViewModel model) + { + var companyRole = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync( x => x.CompanyId == model.CompanyId, null, null, false ); + if (model == null) + { + var newCompanyrole = new CreateCompanyRoleViewModel() + { + Id = Guid.NewGuid(), + CompanyId = model.CompanyId, + RoleId = model.RoleId, + CreatedDate = model.CreatedDate, + }; + + await _unitOfwork.GetRepository().InsertAsync(newCompanyrole); + await _unitOfwork.SaveChangesAsync(); + + return new BaseResponse { Message = "CompanyRole Created Successfully", Status = true }; + + } + else return new BaseResponse { Message = "CompanyRole Does Not Exist", Status = false }; + } + /// + /// "Get All CompanyRole" + /// + /// + public async Task> GetAll() + { + var companyRole = _unitOfwork.GetRepository().GetAll().ToList(); + + return companyRole; + + } + + /// + /// "Get By CompanyId" + /// + /// + /// + public async Task GetByCompanyId(CreateCompanyRoleViewModel model) + { + var companyRole = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync( x=> x.CompanyId == model.CompanyId, null, null, false); + + return companyRole; + + } + + /// + /// "Get By RoleId" + /// + /// + /// + public async Task GetByRoleId(CreateCompanyRoleViewModel model) + { + var companyRole = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.RoleId == model.RoleId, null, null, false); + + return companyRole; + } + /// + /// "Update CompanyRole" + /// + /// + /// + public async Task UpdateCompanyRole(UpdateCompanyRoleViewModel model) + { + var companyRole = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Id == model.Id, null, null, false); + if (model != null) + { + var newCompanyRole = new UpdateCompanyRoleViewModel() + { + + RoleId = model.RoleId, + UpdatedDate = DateTime.Now, + }; + _unitOfwork.GetRepository().Update(newCompanyRole); + await _unitOfwork.SaveChangesAsync(); + + return new BaseResponse { Message = "CompanyRole Updated Successfully", Status = true }; + } + else return new BaseResponse { Message = "CompanyRole Does Not Exist" , Status = false}; + } + /// + /// "SoftDelete CompanyRole" + /// + /// + /// + public async Task SoftDeleteCompanyRole(CreateCompanyRoleViewModel model) + { + var companyRole = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Id == model.Id, null, null, false); + companyRole.SoftDelete = false; + + await _unitOfwork.GetRepository().InsertAsync(companyRole); + await _unitOfwork.SaveChangesAsync(); + + return false; + } + } +} diff --git a/StaffHelper.Service/Services/CompanyService.cs b/StaffHelper.Service/Services/CompanyService.cs new file mode 100644 index 0000000..d18d222 --- /dev/null +++ b/StaffHelper.Service/Services/CompanyService.cs @@ -0,0 +1,151 @@ +using Arch.EntityFrameworkCore.UnitOfWork; +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using StaffHelper.Service.Interfaces; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace StaffHelper.Service.Services +{ + public class CompanyService: ICompanyService + { + private readonly IUnitOfWork _unitOfwork; + + + public CompanyService(IUnitOfWork unitOfwork) + { + _unitOfwork = unitOfwork; + } + /// + /// "Get All" + /// + /// + /// + + public async Task> GetAll() + { + var company = _unitOfwork.GetRepository().GetAll().ToList(); + + + return company; + } + /// + /// "Get By RcNo" + /// + /// + /// + public async Task GetByRcNo(CreateCompanyViewModel model) + { + var company = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.RcNo == model.RcNo, null, null, false); + + + return company; + } + /// + /// "Get By Company Name" + /// + /// + /// + public async Task GetByName(CreateCompanyViewModel model) + { + var company = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Name.ToUpper() == model.Name.ToUpper(),null, null, false); + + + return company; + } + /// + /// "Get By Company Address" + /// + /// + /// + public async Task GetByAddress(CreateCompanyViewModel model) + { + var company = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Address == model.Address, null, null, false); + + + return company; + } + /// + /// "Create Company" + /// + /// + /// + public async Task CreateCompany(CreateCompanyViewModel model) + { + var company = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Id == model.Id, null, null, false); + if (model == null) + { + var newCompany = new CreateCompanyViewModel() + { + Id = Guid.NewGuid(), + Name = model.Name.ToUpper(), + Website = model.Website, + Email = model.Email, + PhoneNumber = model.PhoneNumber, + Address = model.Address, + RcNo = model.RcNo, + CreatedDate = DateTime.Now, + }; + await _unitOfwork.GetRepository().InsertAsync(newCompany); + await _unitOfwork.SaveChangesAsync(); + + return new BaseResponse { Message = "Company Created Successfully", Status = true}; + + } + + else return new BaseResponse { Message = "Company Already Exist", Status = false }; + + } + /// + /// "Update Company" + /// + /// + /// + public async Task UpdateCompany(UpdateCompanyViewModel model) + { + var company = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Id == model.Id,null,null,false); + + if (model != null) + { + + var newCompany = new UpdateCompanyViewModel() + { + Name = model.Name.ToUpper(), + Email = model.Email, + PhoneNumber = model.PhoneNumber, + Address = model.Address, + UpdatedDate = DateTime.Now, + }; + _unitOfwork.GetRepository().Update(newCompany); + await _unitOfwork.SaveChangesAsync(); + + return new BaseResponse { Message = " Company Updated Successfully", Status = true }; + } + + else return new BaseResponse { Message = "Company Does Not Exist" , Status = false }; + + + } + /// + /// "SoftDelete Company" + /// + /// + /// + public async Task SoftDeleteCompany(CreateCompanyViewModel model) + { + var company = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Id == model.Id, null, null, false); + company.SoftDelete = false; + + await _unitOfwork.GetRepository().InsertAsync(company); + await _unitOfwork.SaveChangesAsync(); + + return false; + + + } + + + } +} diff --git a/StaffHelper.Service/Services/CompanyUnitService.cs b/StaffHelper.Service/Services/CompanyUnitService.cs new file mode 100644 index 0000000..65eb854 --- /dev/null +++ b/StaffHelper.Service/Services/CompanyUnitService.cs @@ -0,0 +1,131 @@ +using Arch.EntityFrameworkCore.UnitOfWork; +using StaffHelper.Model.Entities; +using StaffHelper.Model.ViewModels; +using StaffHelper.Service.Interfaces; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace StaffHelper.Service.Services +{ + public class CompanyUnitService: ICompanyUnitService + { + private readonly IUnitOfWork _unitOfwork; + + + public CompanyUnitService(IUnitOfWork unitOfwork) + { + _unitOfwork = unitOfwork; + } + /// + /// "Get All" + /// + /// + public async Task> GetAll() + { + var companyUnit = _unitOfwork.GetRepository().GetAll().ToList(); + + return companyUnit; + + + // List companyUnits = new List(); + //foreach(var item in companyUnits) + //{ + // return companyUnits; + //} + + } + /// + /// "Create CompanyUnit" + /// + /// + /// + public async Task CreateCompanyUnit(CreateCompanyUnitViewModel model) + { + var companyUnit = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Id == model.Id, null, null, false); + if (model == null) + { + var newCompanyunit = new CreateCompanyUnitViewModel() + { + + Id = Guid.NewGuid(), + CompanyId = model.CompanyId, + Name = model.Name, + CreatedDate = DateTime.Now, + + }; + await _unitOfwork.GetRepository().InsertAsync(newCompanyunit); + await _unitOfwork.SaveChangesAsync(); + + return new BaseResponse { Message = "CompanyUnit Created Successfully", Status = true }; + } + + else return new BaseResponse { Message = "CompanyUnit Already Exist", Status = false }; + } + /// + /// "Get By CompanyId" + /// + /// + /// + public async Task GetByCompanyId(CreateCompanyUnitViewModel model) + { + var companyUnit = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync( x => x.CompanyId == model.CompanyId, null , null , false); + return companyUnit; + + } + /// + /// "Get By CompanyUnit Name" + /// + /// + /// + public async Task GetByName(CreateCompanyUnitViewModel model) + { + var companyUnit = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Name == model.Name, null, null, false); + return companyUnit; + } + /// + /// "Update CompanyUnit" + /// + /// + /// + public async Task UpdateCompanyUnit(UpdateCompanyUnitViewModel model) + { + var companyUnit = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Id == model.Id, null, null, false); + if (model != null) + { + var newCompanyunit = new UpdateCompanyUnitViewModel() + { + + Name = model.Name, + UpdatedDate = DateTime.Now, + + }; + _unitOfwork.GetRepository().Update(newCompanyunit); + await _unitOfwork.SaveChangesAsync(); + + return new BaseResponse { Message = "CompanyUnit Updated Successfully", Status = true }; + } + + else return new BaseResponse { Message = "CompanyUnit Does Not Exist", Status = false }; + } + /// + /// "SoftDelete CompanyUnit" + /// + /// + /// + public async Task SoftDeleteCompanyUnit(CreateCompanyUnitViewModel model) + { + var company = await _unitOfwork.GetRepository().GetFirstOrDefaultAsync(x => x.Id == model.Id, null, null, false); + company.SoftDelete = false; + + await _unitOfwork.GetRepository().InsertAsync(company); + await _unitOfwork.SaveChangesAsync(); + + return false; + + + } + + } +} diff --git a/StaffHelper.Service/StaffHelper.Service.csproj b/StaffHelper.Service/StaffHelper.Service.csproj new file mode 100644 index 0000000..bdc5d54 --- /dev/null +++ b/StaffHelper.Service/StaffHelper.Service.csproj @@ -0,0 +1,12 @@ + + + + netcoreapp3.1 + + + + + + + + diff --git a/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll new file mode 100644 index 0000000..dc39587 Binary files /dev/null and b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Model.dll differ diff --git a/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb new file mode 100644 index 0000000..e5e173e Binary files /dev/null and b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Model.pdb differ diff --git a/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.deps.json b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.deps.json new file mode 100644 index 0000000..9da6508 --- /dev/null +++ b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.deps.json @@ -0,0 +1,408 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": { + "StaffHelper.Service/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.UnitOfWork": "3.1.0", + "StaffHelper.Model": "1.0.0" + }, + "runtime": { + "StaffHelper.Service.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "Microsoft.Bcl.HashCode/1.1.0": { + "runtime": { + "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "Microsoft.EntityFrameworkCore/3.1.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.0", + "Microsoft.Bcl.HashCode": "1.1.0", + "Microsoft.EntityFrameworkCore.Abstractions": "3.1.0", + "Microsoft.EntityFrameworkCore.Analyzers": "3.1.0", + "Microsoft.Extensions.Caching.Memory": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "3.1.0", + "Microsoft.Extensions.Logging": "3.1.0", + "System.Collections.Immutable": "1.7.0", + "System.ComponentModel.Annotations": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56505" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56505" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.0": {}, + "Microsoft.EntityFrameworkCore.AutoHistory/3.1.1": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "3.1.0", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.AutoHistory.dll": { + "assemblyVersion": "3.1.1.0", + "fileVersion": "3.1.1.0" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56505" + } + } + }, + "Microsoft.EntityFrameworkCore.UnitOfWork/3.1.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.AutoHistory": "3.1.1", + "Microsoft.EntityFrameworkCore.Relational": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.UnitOfWork.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.Caching.Memory/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "3.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Microsoft.Extensions.Options": "3.1.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.Configuration/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.Configuration.Binder/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.DependencyInjection/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.Logging/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "3.1.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Microsoft.Extensions.Options": "3.1.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/3.1.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.Options/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0", + "Microsoft.Extensions.Primitives": "3.1.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Microsoft.Extensions.Primitives/3.1.0": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.100.19.56504" + } + } + }, + "Newtonsoft.Json/12.0.3": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.3.23909" + } + } + }, + "System.Collections.Immutable/1.7.0": {}, + "System.ComponentModel.Annotations/4.7.0": {}, + "System.Diagnostics.DiagnosticSource/4.7.0": {}, + "StaffHelper.Model/1.0.0": { + "runtime": { + "StaffHelper.Model.dll": {} + } + } + } + }, + "libraries": { + "StaffHelper.Service/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==", + "path": "microsoft.bcl.asyncinterfaces/1.1.0", + "hashPath": "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512" + }, + "Microsoft.Bcl.HashCode/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==", + "path": "microsoft.bcl.hashcode/1.1.0", + "hashPath": "microsoft.bcl.hashcode.1.1.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BG+K/TBDlmkFUviU8lPvmQ3/nDf9e5MKh1il31gLEToV2kgxgkg+JulhtM0xOph6OU1Iyd5A+3c5FyBpI2xh3A==", + "path": "microsoft.entityframeworkcore/3.1.0", + "hashPath": "microsoft.entityframeworkcore.3.1.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6Wn8vQUq04aeXKVf7pu6/hQxqQliSyM5TocAJUBRQpDNAZGuu3nWMx1biEtZqhGXa4UTLTIJCOb8YANToC8ooA==", + "path": "microsoft.entityframeworkcore.abstractions/3.1.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.3.1.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Shqqf6MFaIkcuR6dMEBzvG0LMJMoKKMx+k14nUax98vv33i3AUUGxKF9VfJt7VsjOA3xu+KOdzCW8YJ2KLoRIA==", + "path": "microsoft.entityframeworkcore.analyzers/3.1.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.3.1.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.AutoHistory/3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUyDffkoWa8urNm0z2TMX7VxYPal5LuHlirlWpzz7xKFMoSwmqpclz9ODXxmgrHLQ7/yT2Pv9Id0HO59dsKxWw==", + "path": "microsoft.entityframeworkcore.autohistory/3.1.1", + "hashPath": "microsoft.entityframeworkcore.autohistory.3.1.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eeiqVqzXVuwQsUbqXMyXSEUn/EHB9zmDsr5f/+v6uEt0ir7pgItuIi3I7QV4xvM/s0KbFsqGUOrAFPeRHE3plg==", + "path": "microsoft.entityframeworkcore.relational/3.1.0", + "hashPath": "microsoft.entityframeworkcore.relational.3.1.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.UnitOfWork/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzHpeIljFflhg3TWuro6SlaRR8UJ026PB7RhSg6Z3aNJxxP8x+Mfm+lHpM2lrgw3+T6blPZwxik0lt9lIzW0EQ==", + "path": "microsoft.entityframeworkcore.unitofwork/3.1.0", + "hashPath": "microsoft.entityframeworkcore.unitofwork.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+R7REEI+Pks1/ITjDdvey+QJzIG3tIYOtrv4RT40UVVe2Y1Sa8pIjJy3MzPZbyXVgOFN3JHFz1UZH8kz04aa5A==", + "path": "microsoft.extensions.caching.abstractions/3.1.0", + "hashPath": "microsoft.extensions.caching.abstractions.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SWVYYFN8K4bUEZAwVbcdxjApYE7JtbjPXIqsQt/vKE243u0qeDuS7bA5hKVr+k5lo2R+BpITe6Mvqmkus2xDRQ==", + "path": "microsoft.extensions.caching.memory/3.1.0", + "hashPath": "microsoft.extensions.caching.memory.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lu41BWNmwhKr6LgyQvcYBOge0pPvmiaK8R5UHXX4//wBhonJyWcT2OK1mqYfEM5G7pTf31fPrpIHOT6sN7EGOA==", + "path": "microsoft.extensions.configuration/3.1.0", + "hashPath": "microsoft.extensions.configuration.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ESz6bVoDQX7sgWdKHF6G9Pq672T8k+19AFb/txDXwdz7MoqaNQj2/in3agm/3qae9V+WvQZH86LLTNVo0it8vQ==", + "path": "microsoft.extensions.configuration.abstractions/3.1.0", + "hashPath": "microsoft.extensions.configuration.abstractions.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-o9eELDBfNkR7sUtYysFZ1Q7BQ1mYt27DMkups/3vu7xgPyOpMD+iAfrBZFzUXT2iw0fmFb8s1gfNBZS+IgjKdQ==", + "path": "microsoft.extensions.configuration.binder/3.1.0", + "hashPath": "microsoft.extensions.configuration.binder.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KVkv3aF2MQpmGFRh4xRx2CNbc2sjDFk+lH4ySrjWSOS+XoY1Xc+sJphw3N0iYOpoeCCq8976ceVYDH8sdx2qIQ==", + "path": "microsoft.extensions.dependencyinjection/3.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-44rDtOf1JXXAFpNT2EXMExaDm/4OJ2RXOL9i9lE4bK427nzC7Exphv+beB6IgluyE2GIoo8zezTStMXI7MQ8WA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+8sKQ8L4ooL79sxxqwFPxGGC3aBrUDLB/dZqhs4J0XjTyrkeeyJQ4D4nzJB6OnAhy78HIIgQ/RbD6upOXLynw==", + "path": "microsoft.extensions.logging/3.1.0", + "hashPath": "microsoft.extensions.logging.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jjo4YXRx6MIpv6DiRxJjSpl+sPP0+5VW0clMEdLyIAz44PPwrDTFrd5PZckIxIXl1kKZ2KK6IL2nkt0+ug2MQg==", + "path": "microsoft.extensions.logging.abstractions/3.1.0", + "hashPath": "microsoft.extensions.logging.abstractions.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9b6JHY7TAXrSfZ6EEGf+j8XnqKIiMPErfmaNXhJYSCb+BUW2H4RtzkNJvwLJzwgzqBP0wtTjyA6Uw4BPPdmkMw==", + "path": "microsoft.extensions.options/3.1.0", + "hashPath": "microsoft.extensions.options.3.1.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LEKAnX7lhUhSoIc2XraCTK3M4IU/LdVUzCe464Sa4+7F4ZJuXHHRzZli2mDbiT4xzAZhgqXbvfnb5+CNDcQFfg==", + "path": "microsoft.extensions.primitives/3.1.0", + "hashPath": "microsoft.extensions.primitives.3.1.0.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "path": "newtonsoft.json/12.0.3", + "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512" + }, + "System.Collections.Immutable/1.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==", + "path": "system.collections.immutable/1.7.0", + "hashPath": "system.collections.immutable.1.7.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", + "path": "system.componentmodel.annotations/4.7.0", + "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "hashPath": "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + }, + "StaffHelper.Model/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.dll b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.dll new file mode 100644 index 0000000..8385f6b Binary files /dev/null and b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.dll differ diff --git a/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.pdb b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.pdb new file mode 100644 index 0000000..a77f6c9 Binary files /dev/null and b/StaffHelper.Service/bin/Debug/netcoreapp3.1/StaffHelper.Service.pdb differ diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/StaffHelper.Service/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/StaffHelper.Service/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.AssemblyInfo.cs b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.AssemblyInfo.cs new file mode 100644 index 0000000..79de8cc --- /dev/null +++ b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("StaffHelper.Service")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("StaffHelper.Service")] +[assembly: System.Reflection.AssemblyTitleAttribute("StaffHelper.Service")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.AssemblyInfoInputs.cache b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.AssemblyInfoInputs.cache new file mode 100644 index 0000000..286a2e2 --- /dev/null +++ b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +080cbdb10ede16de8f44bbe749f8e6143eff540b diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.GeneratedMSBuildEditorConfig.editorconfig b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ccd1f00 --- /dev/null +++ b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = StaffHelper.Service +build_property.ProjectDir = C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\ diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.assets.cache b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.assets.cache new file mode 100644 index 0000000..3f54ef1 Binary files /dev/null and b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.assets.cache differ diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.AssemblyReference.cache b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.AssemblyReference.cache new file mode 100644 index 0000000..dd0acff Binary files /dev/null and b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.AssemblyReference.cache differ diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.CopyComplete b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.CoreCompileInputs.cache b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5dfa747 --- /dev/null +++ b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +aeb53157adf3d14f6a3d8147c61da6a0b7b347fe diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.FileListAbsolute.txt b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e69d0b7 --- /dev/null +++ b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\bin\Debug\netcoreapp3.1\StaffHelper.Service.deps.json +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\bin\Debug\netcoreapp3.1\StaffHelper.Service.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\bin\Debug\netcoreapp3.1\StaffHelper.Service.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\bin\Debug\netcoreapp3.1\StaffHelper.Model.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\bin\Debug\netcoreapp3.1\StaffHelper.Model.pdb +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\obj\Debug\netcoreapp3.1\StaffHelper.Service.csproj.AssemblyReference.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\obj\Debug\netcoreapp3.1\StaffHelper.Service.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\obj\Debug\netcoreapp3.1\StaffHelper.Service.AssemblyInfoInputs.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\obj\Debug\netcoreapp3.1\StaffHelper.Service.AssemblyInfo.cs +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\obj\Debug\netcoreapp3.1\StaffHelper.Service.csproj.CoreCompileInputs.cache +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\obj\Debug\netcoreapp3.1\StaffHelper.Service.csproj.CopyComplete +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\obj\Debug\netcoreapp3.1\StaffHelper.Service.dll +C:\Users\Sumayya Uthman\Documents\Big-Applications\StaffHelper\StaffHelper.Service\obj\Debug\netcoreapp3.1\StaffHelper.Service.pdb diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.dll b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.dll new file mode 100644 index 0000000..8385f6b Binary files /dev/null and b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.dll differ diff --git a/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.pdb b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.pdb new file mode 100644 index 0000000..a77f6c9 Binary files /dev/null and b/StaffHelper.Service/obj/Debug/netcoreapp3.1/StaffHelper.Service.pdb differ diff --git a/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.dgspec.json b/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f49d694 --- /dev/null +++ b/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.dgspec.json @@ -0,0 +1,126 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj": {} + }, + "projects": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "projectName": "StaffHelper.Model", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj", + "projectName": "StaffHelper.Service", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore.UnitOfWork": { + "target": "Package", + "version": "[3.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.g.props b/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.g.props new file mode 100644 index 0000000..e9e0f4d --- /dev/null +++ b/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Sumayya Uthman\.nuget\packages\ + PackageReference + 6.0.1 + + + + + \ No newline at end of file diff --git a/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.g.targets b/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/StaffHelper.Service/obj/StaffHelper.Service.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/StaffHelper.Service/obj/project.assets.json b/StaffHelper.Service/obj/project.assets.json new file mode 100644 index 0000000..d8dbd6c --- /dev/null +++ b/StaffHelper.Service/obj/project.assets.json @@ -0,0 +1,835 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.Bcl.AsyncInterfaces/1.1.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + } + }, + "Microsoft.Bcl.HashCode/1.1.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.0", + "Microsoft.Bcl.HashCode": "1.1.0", + "Microsoft.EntityFrameworkCore.Abstractions": "3.1.0", + "Microsoft.EntityFrameworkCore.Analyzers": "3.1.0", + "Microsoft.Extensions.Caching.Memory": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "3.1.0", + "Microsoft.Extensions.Logging": "3.1.0", + "System.Collections.Immutable": "1.7.0", + "System.ComponentModel.Annotations": "4.7.0", + "System.Diagnostics.DiagnosticSource": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.AutoHistory/3.1.1": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "3.1.0", + "Newtonsoft.Json": "12.0.3" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.AutoHistory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.AutoHistory.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.UnitOfWork/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.AutoHistory": "3.1.1", + "Microsoft.EntityFrameworkCore.Relational": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.UnitOfWork.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.UnitOfWork.dll": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "3.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Microsoft.Extensions.Options": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "3.1.0", + "Microsoft.Extensions.DependencyInjection": "3.1.0", + "Microsoft.Extensions.Logging.Abstractions": "3.1.0", + "Microsoft.Extensions.Options": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0", + "Microsoft.Extensions.Primitives": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/3.1.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.7.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel.Annotations/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "StaffHelper.Model/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "compile": { + "bin/placeholder/StaffHelper.Model.dll": {} + }, + "runtime": { + "bin/placeholder/StaffHelper.Model.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Bcl.AsyncInterfaces/1.1.0": { + "sha512": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Bcl.HashCode/1.1.0": { + "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==", + "type": "package", + "path": "microsoft.bcl.hashcode/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.HashCode.dll", + "lib/net461/Microsoft.Bcl.HashCode.xml", + "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll", + "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml", + "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll", + "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml", + "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll", + "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml", + "microsoft.bcl.hashcode.1.1.0.nupkg.sha512", + "microsoft.bcl.hashcode.nuspec", + "ref/net461/Microsoft.Bcl.HashCode.dll", + "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll", + "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll", + "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/3.1.0": { + "sha512": "BG+K/TBDlmkFUviU8lPvmQ3/nDf9e5MKh1il31gLEToV2kgxgkg+JulhtM0xOph6OU1Iyd5A+3c5FyBpI2xh3A==", + "type": "package", + "path": "microsoft.entityframeworkcore/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.3.1.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/3.1.0": { + "sha512": "6Wn8vQUq04aeXKVf7pu6/hQxqQliSyM5TocAJUBRQpDNAZGuu3nWMx1biEtZqhGXa4UTLTIJCOb8YANToC8ooA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.3.1.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/3.1.0": { + "sha512": "Shqqf6MFaIkcuR6dMEBzvG0LMJMoKKMx+k14nUax98vv33i3AUUGxKF9VfJt7VsjOA3xu+KOdzCW8YJ2KLoRIA==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.3.1.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.EntityFrameworkCore.AutoHistory/3.1.1": { + "sha512": "AUyDffkoWa8urNm0z2TMX7VxYPal5LuHlirlWpzz7xKFMoSwmqpclz9ODXxmgrHLQ7/yT2Pv9Id0HO59dsKxWw==", + "type": "package", + "path": "microsoft.entityframeworkcore.autohistory/3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.AutoHistory.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.AutoHistory.xml", + "microsoft.entityframeworkcore.autohistory.3.1.1.nupkg.sha512", + "microsoft.entityframeworkcore.autohistory.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.0": { + "sha512": "eeiqVqzXVuwQsUbqXMyXSEUn/EHB9zmDsr5f/+v6uEt0ir7pgItuIi3I7QV4xvM/s0KbFsqGUOrAFPeRHE3plg==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.3.1.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.EntityFrameworkCore.UnitOfWork/3.1.0": { + "sha512": "JzHpeIljFflhg3TWuro6SlaRR8UJ026PB7RhSg6Z3aNJxxP8x+Mfm+lHpM2lrgw3+T6blPZwxik0lt9lIzW0EQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.unitofwork/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.UnitOfWork.dll", + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.UnitOfWork.xml", + "microsoft.entityframeworkcore.unitofwork.3.1.0.nupkg.sha512", + "microsoft.entityframeworkcore.unitofwork.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/3.1.0": { + "sha512": "+R7REEI+Pks1/ITjDdvey+QJzIG3tIYOtrv4RT40UVVe2Y1Sa8pIjJy3MzPZbyXVgOFN3JHFz1UZH8kz04aa5A==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.3.1.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Caching.Memory/3.1.0": { + "sha512": "SWVYYFN8K4bUEZAwVbcdxjApYE7JtbjPXIqsQt/vKE243u0qeDuS7bA5hKVr+k5lo2R+BpITe6Mvqmkus2xDRQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.3.1.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Configuration/3.1.0": { + "sha512": "Lu41BWNmwhKr6LgyQvcYBOge0pPvmiaK8R5UHXX4//wBhonJyWcT2OK1mqYfEM5G7pTf31fPrpIHOT6sN7EGOA==", + "type": "package", + "path": "microsoft.extensions.configuration/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.3.1.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/3.1.0": { + "sha512": "ESz6bVoDQX7sgWdKHF6G9Pq672T8k+19AFb/txDXwdz7MoqaNQj2/in3agm/3qae9V+WvQZH86LLTNVo0it8vQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.3.1.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Configuration.Binder/3.1.0": { + "sha512": "o9eELDBfNkR7sUtYysFZ1Q7BQ1mYt27DMkups/3vu7xgPyOpMD+iAfrBZFzUXT2iw0fmFb8s1gfNBZS+IgjKdQ==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.3.1.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.DependencyInjection/3.1.0": { + "sha512": "KVkv3aF2MQpmGFRh4xRx2CNbc2sjDFk+lH4ySrjWSOS+XoY1Xc+sJphw3N0iYOpoeCCq8976ceVYDH8sdx2qIQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": { + "sha512": "44rDtOf1JXXAFpNT2EXMExaDm/4OJ2RXOL9i9lE4bK427nzC7Exphv+beB6IgluyE2GIoo8zezTStMXI7MQ8WA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.3.1.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Logging/3.1.0": { + "sha512": "P+8sKQ8L4ooL79sxxqwFPxGGC3aBrUDLB/dZqhs4J0XjTyrkeeyJQ4D4nzJB6OnAhy78HIIgQ/RbD6upOXLynw==", + "type": "package", + "path": "microsoft.extensions.logging/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.3.1.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/3.1.0": { + "sha512": "jjo4YXRx6MIpv6DiRxJjSpl+sPP0+5VW0clMEdLyIAz44PPwrDTFrd5PZckIxIXl1kKZ2KK6IL2nkt0+ug2MQg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.3.1.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Options/3.1.0": { + "sha512": "9b6JHY7TAXrSfZ6EEGf+j8XnqKIiMPErfmaNXhJYSCb+BUW2H4RtzkNJvwLJzwgzqBP0wtTjyA6Uw4BPPdmkMw==", + "type": "package", + "path": "microsoft.extensions.options/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.3.1.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Primitives/3.1.0": { + "sha512": "LEKAnX7lhUhSoIc2XraCTK3M4IU/LdVUzCe464Sa4+7F4ZJuXHHRzZli2mDbiT4xzAZhgqXbvfnb5+CNDcQFfg==", + "type": "package", + "path": "microsoft.extensions.primitives/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.3.1.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json/12.0.3": { + "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "type": "package", + "path": "newtonsoft.json/12.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "System.Collections.Immutable/1.7.0": { + "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==", + "type": "package", + "path": "system.collections.immutable/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.7.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Annotations/4.7.0": { + "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", + "type": "package", + "path": "system.componentmodel.annotations/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.7.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/4.7.0": { + "sha512": "oJjw3uFuVDJiJNbCD8HB4a2p3NYLdt1fiT5OGsPLw+WTOuG0KpP4OXelMmmVKpClueMsit6xOlzy4wNKQFiBLg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "StaffHelper.Model/1.0.0": { + "type": "project", + "path": "../StaffHelper.Model/StaffHelper.Model.csproj", + "msbuildProject": "../StaffHelper.Model/StaffHelper.Model.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.EntityFrameworkCore.UnitOfWork >= 3.1.0", + "StaffHelper.Model >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj", + "projectName": "StaffHelper.Service", + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj", + "packagesPath": "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Sumayya Uthman\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj": { + "projectPath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Model\\StaffHelper.Model.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore.UnitOfWork": { + "target": "Package", + "version": "[3.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/StaffHelper.Service/obj/project.nuget.cache b/StaffHelper.Service/obj/project.nuget.cache new file mode 100644 index 0000000..234c0e5 --- /dev/null +++ b/StaffHelper.Service/obj/project.nuget.cache @@ -0,0 +1,32 @@ +{ + "version": 2, + "dgSpecHash": "DjyfMprsdclY+ZG7VPI/HG0B2Q4UGk+AYpTfy/ogYYZpopYqJpSTTzhXNomMnizkNNGViG33CDGgNyES6XHJ9g==", + "success": true, + "projectFilePath": "C:\\Users\\Sumayya Uthman\\Documents\\Big-Applications\\StaffHelper\\StaffHelper.Service\\StaffHelper.Service.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.0\\microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.0\\microsoft.bcl.hashcode.1.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.0\\microsoft.entityframeworkcore.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.0\\microsoft.entityframeworkcore.abstractions.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.0\\microsoft.entityframeworkcore.analyzers.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.autohistory\\3.1.1\\microsoft.entityframeworkcore.autohistory.3.1.1.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.0\\microsoft.entityframeworkcore.relational.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.entityframeworkcore.unitofwork\\3.1.0\\microsoft.entityframeworkcore.unitofwork.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.0\\microsoft.extensions.caching.abstractions.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.0\\microsoft.extensions.caching.memory.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.0\\microsoft.extensions.configuration.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.0\\microsoft.extensions.configuration.abstractions.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.0\\microsoft.extensions.configuration.binder.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.0\\microsoft.extensions.dependencyinjection.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.0\\microsoft.extensions.dependencyinjection.abstractions.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.logging\\3.1.0\\microsoft.extensions.logging.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.0\\microsoft.extensions.logging.abstractions.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.options\\3.1.0\\microsoft.extensions.options.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.0\\microsoft.extensions.primitives.3.1.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.collections.immutable\\1.7.0\\system.collections.immutable.1.7.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", + "C:\\Users\\Sumayya Uthman\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.0\\system.diagnostics.diagnosticsource.4.7.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/StaffHelper.sln b/StaffHelper.sln index bedb181..f6a8619 100644 --- a/StaffHelper.sln +++ b/StaffHelper.sln @@ -3,11 +3,13 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.32112.339 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StaffHelper.Model", "StaffHelper.Model\StaffHelper.Model.csproj", "{9787B90C-C3EE-46B9-ABB1-B55E20ED911C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StaffHelper.Model", "StaffHelper.Model\StaffHelper.Model.csproj", "{9787B90C-C3EE-46B9-ABB1-B55E20ED911C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StaffHelper.Migrations", "StaffHelper.Migrations\StaffHelper.Migrations.csproj", "{37C52AC5-650D-4502-B685-108F9811BC6B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StaffHelper.Migrations", "StaffHelper.Migrations\StaffHelper.Migrations.csproj", "{37C52AC5-650D-4502-B685-108F9811BC6B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StaffHelper.API", "StaffHelper.API\StaffHelper.API.csproj", "{E2FA64E5-0ECE-4B27-AB71-CB4ADDBCAC52}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StaffHelper.API", "StaffHelper.API\StaffHelper.API.csproj", "{E2FA64E5-0ECE-4B27-AB71-CB4ADDBCAC52}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StaffHelper.Service", "StaffHelper.Service\StaffHelper.Service.csproj", "{605C879F-7568-469A-9C44-A8C5423AF163}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -27,6 +29,10 @@ Global {E2FA64E5-0ECE-4B27-AB71-CB4ADDBCAC52}.Debug|Any CPU.Build.0 = Debug|Any CPU {E2FA64E5-0ECE-4B27-AB71-CB4ADDBCAC52}.Release|Any CPU.ActiveCfg = Release|Any CPU {E2FA64E5-0ECE-4B27-AB71-CB4ADDBCAC52}.Release|Any CPU.Build.0 = Release|Any CPU + {605C879F-7568-469A-9C44-A8C5423AF163}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {605C879F-7568-469A-9C44-A8C5423AF163}.Debug|Any CPU.Build.0 = Debug|Any CPU + {605C879F-7568-469A-9C44-A8C5423AF163}.Release|Any CPU.ActiveCfg = Release|Any CPU + {605C879F-7568-469A-9C44-A8C5423AF163}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE