diff --git a/backend/.idea/.name b/backend/.idea/.name new file mode 100644 index 0000000..8e5ecd3 --- /dev/null +++ b/backend/.idea/.name @@ -0,0 +1 @@ +SicknessPredictionScript.py \ No newline at end of file diff --git a/backend/.idea/inspectionProfiles/Project_Default.xml b/backend/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..dce2ee5 --- /dev/null +++ b/backend/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,14 @@ + + + + \ No newline at end of file diff --git a/backend/.idea/vcs.xml b/backend/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/backend/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/backend/.idea/workspace.xml b/backend/.idea/workspace.xml new file mode 100644 index 0000000..588ea87 --- /dev/null +++ b/backend/.idea/workspace.xml @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1712913009399 + + + + + + \ No newline at end of file diff --git a/backend/API/Controllers/SicknessPredictionController.cs b/backend/API/Controllers/SicknessPredictionController.cs new file mode 100644 index 0000000..54f7378 --- /dev/null +++ b/backend/API/Controllers/SicknessPredictionController.cs @@ -0,0 +1,17 @@ +using Application.Endpoints; +using Application.Endpoints.SicknessPrediction; +using Microsoft.AspNetCore.Mvc; + +namespace API.Controllers; + +[Route("api/[controller]")] +public class SicknessPredictionController : BaseApiController +{ + [HttpPost] + public async Task> GetPrediction(SicknessPredictionDto dto) + { + var handler = new SicknessPredictionHandler(); + var result = await handler.GetPrediction(dto); + return StatusCode(result.StatusCode, result); + } +} \ No newline at end of file diff --git a/backend/API/Program.cs b/backend/API/Program.cs index f8c2721..40bb71a 100644 --- a/backend/API/Program.cs +++ b/backend/API/Program.cs @@ -57,13 +57,13 @@ if (app.Environment.IsDevelopment()) } app.UseCors("AllowAll"); -app.UseHttpsRedirection(); +//app.UseHttpsRedirection(); app.MapControllers(); // Middlewares app.UseMiddleware(); app.UseMiddleware(); -app.UseMiddleware(); +//app.UseMiddleware(); using (var scope = app.Services.CreateScope()) { diff --git a/backend/API/Properties/launchSettings.json b/backend/API/Properties/launchSettings.json index 83d7e9c..5681835 100644 --- a/backend/API/Properties/launchSettings.json +++ b/backend/API/Properties/launchSettings.json @@ -12,19 +12,19 @@ "http": { "commandName": "Project", "dotnetRunMessages": true, - "launchBrowser": false, + "launchBrowser": true, "launchUrl": "swagger", "applicationUrl": "http://localhost:5000;https://localhost:5001", "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Production" + "ASPNETCORE_ENVIRONMENT": "Development" } }, "IIS Express": { "commandName": "IISExpress", - "launchBrowser": false, + "launchBrowser": true, "launchUrl": "swagger", "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Production" + "ASPNETCORE_ENVIRONMENT": "development" } } } diff --git a/backend/API/bin/Debug/net8.0/API.dll b/backend/API/bin/Debug/net8.0/API.dll index 179e171..638838b 100644 Binary files a/backend/API/bin/Debug/net8.0/API.dll and b/backend/API/bin/Debug/net8.0/API.dll differ diff --git a/backend/API/bin/Debug/net8.0/API.exe b/backend/API/bin/Debug/net8.0/API.exe index 08c7320..9293490 100644 Binary files a/backend/API/bin/Debug/net8.0/API.exe and b/backend/API/bin/Debug/net8.0/API.exe differ diff --git a/backend/API/bin/Debug/net8.0/API.pdb b/backend/API/bin/Debug/net8.0/API.pdb index 191ea34..502dcdd 100644 Binary files a/backend/API/bin/Debug/net8.0/API.pdb and b/backend/API/bin/Debug/net8.0/API.pdb differ diff --git a/backend/API/bin/Debug/net8.0/Application.dll b/backend/API/bin/Debug/net8.0/Application.dll index d9570ad..a759edb 100644 Binary files a/backend/API/bin/Debug/net8.0/Application.dll and b/backend/API/bin/Debug/net8.0/Application.dll differ diff --git a/backend/API/bin/Debug/net8.0/Application.pdb b/backend/API/bin/Debug/net8.0/Application.pdb index 0de85f2..104c75d 100644 Binary files a/backend/API/bin/Debug/net8.0/Application.pdb and b/backend/API/bin/Debug/net8.0/Application.pdb differ diff --git a/backend/API/bin/Debug/net8.0/Core.dll b/backend/API/bin/Debug/net8.0/Core.dll index 7e1e95e..0085c1f 100644 Binary files a/backend/API/bin/Debug/net8.0/Core.dll and b/backend/API/bin/Debug/net8.0/Core.dll differ diff --git a/backend/API/bin/Debug/net8.0/Core.pdb b/backend/API/bin/Debug/net8.0/Core.pdb index a45b614..0b3ee6d 100644 Binary files a/backend/API/bin/Debug/net8.0/Core.pdb and b/backend/API/bin/Debug/net8.0/Core.pdb differ diff --git a/backend/API/bin/Debug/net8.0/Infrastructure.dll b/backend/API/bin/Debug/net8.0/Infrastructure.dll index 2e699c0..f14fe3d 100644 Binary files a/backend/API/bin/Debug/net8.0/Infrastructure.dll and b/backend/API/bin/Debug/net8.0/Infrastructure.dll differ diff --git a/backend/API/bin/Debug/net8.0/Infrastructure.pdb b/backend/API/bin/Debug/net8.0/Infrastructure.pdb index c5f907f..526c652 100644 Binary files a/backend/API/bin/Debug/net8.0/Infrastructure.pdb and b/backend/API/bin/Debug/net8.0/Infrastructure.pdb differ diff --git a/backend/API/disease_prediction.log b/backend/API/disease_prediction.log new file mode 100644 index 0000000..494f8e5 --- /dev/null +++ b/backend/API/disease_prediction.log @@ -0,0 +1,33 @@ +2024-04-12 11:52:49,526 INFO: + +Initializing DiseasePredictor +2024-04-12 11:59:01,047 INFO: + +Initializing DiseasePredictor +2024-04-12 12:06:57,251 INFO: + +Initializing DiseasePredictor +2024-04-12 12:18:54,861 INFO: + +Initializing DiseasePredictor +2024-04-12 12:18:54,894 INFO:Training model +2024-04-12 12:18:55,256 INFO:Training accuracy: 0.77 +2024-04-12 12:18:55,257 INFO:Making a prediction +2024-04-12 12:18:55,257 INFO:Extracting features from text +2024-04-12 12:18:55,257 INFO:Tokens extracted: {'Disease': 'No', 'Fever': 'Yes', 'Cough': 'No', 'Fatigue': 'No', 'Difficulty Breathing': 'No', 'Blood Pressure': 'Yes', 'Cholesterol Level': 'No', 'Age': 40, 'Gender': 'Male'} +2024-04-12 12:20:33,079 INFO: + +Initializing DiseasePredictor +2024-04-12 12:20:33,085 INFO:Training model +2024-04-12 12:20:33,484 INFO:Training accuracy: 0.77 +2024-04-12 12:20:33,484 INFO:Making a prediction +2024-04-12 12:20:33,484 INFO:Extracting features from text +2024-04-12 12:20:33,485 INFO:Tokens extracted: {'Disease': 'No', 'Fever': 'Yes', 'Cough': 'No', 'Fatigue': 'No', 'Difficulty Breathing': 'No', 'Blood Pressure': 'Yes', 'Cholesterol Level': 'No', 'Age': 40, 'Gender': 'Male'} +2024-04-12 12:20:55,361 INFO: + +Initializing DiseasePredictor +2024-04-12 12:20:55,367 INFO:Training model +2024-04-12 12:20:55,714 INFO:Training accuracy: 0.77 +2024-04-12 12:20:55,715 INFO:Making a prediction +2024-04-12 12:20:55,715 INFO:Extracting features from text +2024-04-12 12:20:55,715 INFO:Tokens extracted: {'Disease': 'No', 'Fever': 'Yes', 'Cough': 'No', 'Fatigue': 'No', 'Difficulty Breathing': 'No', 'Blood Pressure': 'Yes', 'Cholesterol Level': 'No', 'Age': 40, 'Gender': 'Male'} diff --git a/backend/API/obj/API.csproj.nuget.dgspec.json b/backend/API/obj/API.csproj.nuget.dgspec.json index d9fb73f..83c6210 100644 --- a/backend/API/obj/API.csproj.nuget.dgspec.json +++ b/backend/API/obj/API.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj": {} + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj": {} }, "projects": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj", "projectName": "API", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -26,11 +26,11 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj" }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj" } } } @@ -77,14 +77,14 @@ } } }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -99,8 +99,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj" } } } @@ -144,14 +144,14 @@ } } }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "projectName": "Core", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -203,14 +203,14 @@ } } }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj", "projectName": "Infrastructure", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -225,11 +225,11 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj" }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj" } } } diff --git a/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs b/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs index 15c1777..a6561eb 100644 --- a/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs +++ b/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs @@ -1,6 +1,7 @@ //------------------------------------------------------------------------------ // // 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. @@ -13,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("API")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+adba50e70b255cefbcbb5b6787d20cc26e663a9e")] [assembly: System.Reflection.AssemblyProductAttribute("API")] [assembly: System.Reflection.AssemblyTitleAttribute("API")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache b/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache index 6edf5ac..880f92b 100644 --- a/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache +++ b/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache @@ -1 +1 @@ -7cf0cf1bc0c1bb1fa8ec578557b749a7cc57ef8cae429498fee10b33ff11b247 +21e2daffd84a9e2ce6562860f264939bccf2c28f6703d9bf7e30297daa8b1239 diff --git a/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig b/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig index 97d9755..b620701 100644 --- a/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig +++ b/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig @@ -9,11 +9,11 @@ build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = API build_property.RootNamespace = API -build_property.ProjectDir = C:\Users\Andrei Cerbu\Desktop\backend\API\ +build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 8.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\Andrei Cerbu\Desktop\backend\API +build_property.MSBuildProjectDirectory = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API build_property._RazorSourceGeneratorDebug = diff --git a/backend/API/obj/Debug/net8.0/API.assets.cache b/backend/API/obj/Debug/net8.0/API.assets.cache index 15cb82d..9d83eb5 100644 Binary files a/backend/API/obj/Debug/net8.0/API.assets.cache and b/backend/API/obj/Debug/net8.0/API.assets.cache differ diff --git a/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache b/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache index b711c48..5ef6c33 100644 Binary files a/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache and b/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache differ diff --git a/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache b/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache index 14bbad1..072b46a 100644 --- a/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache +++ b/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -543aafe77e186bf916a0691cf74e95e5f521913f1cb0557f77fb0e0478c5a172 +772f405967d74f8aa92cff906d1ffc9c805bc0a977f419d354f1caccdb7e85a3 diff --git a/backend/API/obj/Debug/net8.0/API.csproj.FileListAbsolute.txt b/backend/API/obj/Debug/net8.0/API.csproj.FileListAbsolute.txt index c6b9e87..fcd0ae9 100644 --- a/backend/API/obj/Debug/net8.0/API.csproj.FileListAbsolute.txt +++ b/backend/API/obj/Debug/net8.0/API.csproj.FileListAbsolute.txt @@ -34,7 +34,6 @@ C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.API.props C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets.pack.json C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\scopedcss\bundle\API.styles.css -C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.csproj.Up2Date C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.dll C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\refint\API.dll C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.pdb @@ -194,3 +193,4 @@ C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\refint C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.pdb C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.genruntimeconfig.cache C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\ref\API.dll +C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.csproj.CopyComplete diff --git a/backend/API/obj/Debug/net8.0/API.dll b/backend/API/obj/Debug/net8.0/API.dll index 179e171..638838b 100644 Binary files a/backend/API/obj/Debug/net8.0/API.dll and b/backend/API/obj/Debug/net8.0/API.dll differ diff --git a/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache b/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache index 3cc39af..bdbdb9d 100644 --- a/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache +++ b/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache @@ -1 +1 @@ -2de96076d5aaf384237cae33070350f9934f673c447a954dabe9d9fb88b31d32 +cf7697bb57c8ed401672a12b2bb138875f61be594e170984d2a891dbe0535240 diff --git a/backend/API/obj/Debug/net8.0/API.pdb b/backend/API/obj/Debug/net8.0/API.pdb index 191ea34..502dcdd 100644 Binary files a/backend/API/obj/Debug/net8.0/API.pdb and b/backend/API/obj/Debug/net8.0/API.pdb differ diff --git a/backend/API/obj/Debug/net8.0/API.sourcelink.json b/backend/API/obj/Debug/net8.0/API.sourcelink.json new file mode 100644 index 0000000..c375bae --- /dev/null +++ b/backend/API/obj/Debug/net8.0/API.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/adba50e70b255cefbcbb5b6787d20cc26e663a9e/*"}} \ No newline at end of file diff --git a/backend/API/obj/Debug/net8.0/apphost.exe b/backend/API/obj/Debug/net8.0/apphost.exe index 08c7320..9293490 100644 Binary files a/backend/API/obj/Debug/net8.0/apphost.exe and b/backend/API/obj/Debug/net8.0/apphost.exe differ diff --git a/backend/API/obj/Debug/net8.0/ref/API.dll b/backend/API/obj/Debug/net8.0/ref/API.dll index bed7f05..a290646 100644 Binary files a/backend/API/obj/Debug/net8.0/ref/API.dll and b/backend/API/obj/Debug/net8.0/ref/API.dll differ diff --git a/backend/API/obj/Debug/net8.0/refint/API.dll b/backend/API/obj/Debug/net8.0/refint/API.dll index bed7f05..a290646 100644 Binary files a/backend/API/obj/Debug/net8.0/refint/API.dll and b/backend/API/obj/Debug/net8.0/refint/API.dll differ diff --git a/backend/API/obj/project.assets.json b/backend/API/obj/project.assets.json index c684d08..441667d 100644 --- a/backend/API/obj/project.assets.json +++ b/backend/API/obj/project.assets.json @@ -2866,11 +2866,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj", "projectName": "API", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -2885,11 +2885,11 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj" }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj" } } } diff --git a/backend/API/obj/project.nuget.cache b/backend/API/obj/project.nuget.cache index 867d24b..476d4dc 100644 --- a/backend/API/obj/project.nuget.cache +++ b/backend/API/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "JqPotdhan1pGOwRO5KHGDthiAw64a1ixY/i/JqNC1km5Hr2KgqRZKCjDebBEOZZEZ/9ZLHJQiW7GNu2jpY81ZA==", + "dgSpecHash": "H5Qo0sozwr+dtjWKUvuynj4zk8X++aQJuu1j0FXoS/GLj1KwbgdyFric4d5FbEvjaO4v4r35BCqsZQZKD1Euvg==", "success": true, - "projectFilePath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj", + "projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj", "expectedPackageFiles": [ "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.core\\3.7.100.14\\awssdk.core.3.7.100.14.nupkg.sha512", "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\awssdk.securitytoken.3.7.100.14.nupkg.sha512", diff --git a/backend/API/obj/project.packagespec.json b/backend/API/obj/project.packagespec.json index 35aa32a..66d0374 100644 --- a/backend/API/obj/project.packagespec.json +++ b/backend/API/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj","projectName":"API","projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\API.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\API\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj"},"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.AspNetCore.Authentication.JwtBearer":{"target":"Package","version":"[8.0.3, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[6.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj","projectName":"API","projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj"},"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.AspNetCore.Authentication.JwtBearer":{"target":"Package","version":"[8.0.3, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[6.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/backend/API/obj/rider.project.model.nuget.info b/backend/API/obj/rider.project.model.nuget.info index 94e110d..f741732 100644 --- a/backend/API/obj/rider.project.model.nuget.info +++ b/backend/API/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17127155176611080 \ No newline at end of file +17129080043840704 \ No newline at end of file diff --git a/backend/API/obj/rider.project.restore.info b/backend/API/obj/rider.project.restore.info index 94e110d..f741732 100644 --- a/backend/API/obj/rider.project.restore.info +++ b/backend/API/obj/rider.project.restore.info @@ -1 +1 @@ -17127155176611080 \ No newline at end of file +17129080043840704 \ No newline at end of file diff --git a/backend/Application/Endpoints/SicknessPrediction/PythonScriptRunner.cs b/backend/Application/Endpoints/SicknessPrediction/PythonScriptRunner.cs new file mode 100644 index 0000000..344b065 --- /dev/null +++ b/backend/Application/Endpoints/SicknessPrediction/PythonScriptRunner.cs @@ -0,0 +1,55 @@ +using System.Diagnostics; + +namespace Application.Endpoints.SicknessPrediction; + +public class PythonScriptRunner +{ + public async Task RunPythonScript(string scriptPath, string args) + { + var response = new BaseResponse(); + using (Process process = new Process()) + { + process.StartInfo = new ProcessStartInfo("python", $"\"{scriptPath}\" \"{args}\"") + { + RedirectStandardOutput = true, + RedirectStandardError = true, // Redirect standard error to capture any errors. + UseShellExecute = false, + CreateNoWindow = true, + }; + + try + { + process.Start(); + + // Read output and error streams. + var output = await process.StandardOutput.ReadToEndAsync(); + var error = await process.StandardError.ReadToEndAsync(); + + process.WaitForExit(); + + if (process.ExitCode == 0) // Assuming exit code 0 as a success. + { + Console.WriteLine(output); + response.StatusCode = HttpStatusCodes.OK; + response.Message = "Success"; + response.Data = output; + } + else + { + Console.WriteLine(error); + response.StatusCode = HttpStatusCodes.InternalServerError; + response.Message = error; // Using the error output as the message if not successful. + response.Data = null; + } + } + catch (Exception ex) + { + response.StatusCode = HttpStatusCodes.InternalServerError; + response.Message = $"An error occurred while executing the Python script: {ex.Message}"; + response.Data = null; + } + + return response; + } + } +} \ No newline at end of file diff --git a/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionDto.cs b/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionDto.cs new file mode 100644 index 0000000..c3e6a69 --- /dev/null +++ b/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionDto.cs @@ -0,0 +1,6 @@ +namespace Application.Endpoints.SicknessPrediction; + +public class SicknessPredictionDto +{ + public string Text { get; set; } +} \ No newline at end of file diff --git a/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionHandler.cs b/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionHandler.cs new file mode 100644 index 0000000..ad6a9fd --- /dev/null +++ b/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionHandler.cs @@ -0,0 +1,33 @@ +namespace Application.Endpoints.SicknessPrediction; + +public class SicknessPredictionHandler +{ + public async Task GetPrediction(SicknessPredictionDto dto) + { + var validation = new SicknessPredictionValidator(); + var validationResult = await validation.ValidateAsync(dto); + + if (!validationResult.IsValid) + { + var firstError = validationResult.Errors.FirstOrDefault(); + var errorCode = int.TryParse(firstError.ErrorCode, out var code) ? code : -1; + var errorMessage = firstError.ErrorMessage; + + return new BaseResponse + { + StatusCode = errorCode, + Message = errorMessage, + Data = null + }; + } + + var currentDirectory = Directory.GetCurrentDirectory(); // gets the current working directory + var applicationDirectory = Path.Combine(Directory.GetParent(currentDirectory)?.FullName, "Application"); + + var scriptPath = Path.Combine(applicationDirectory, "Endpoints","SicknessPrediction", "SicknessPredictionScript.py"); + var scriptRunner = new PythonScriptRunner(); + var result = await scriptRunner.RunPythonScript(scriptPath, dto.Text); + + return result; + } +} \ No newline at end of file diff --git a/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionScript.py b/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionScript.py new file mode 100644 index 0000000..962de8b --- /dev/null +++ b/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionScript.py @@ -0,0 +1,146 @@ +import json +import logging +import sys + +import pandas as pd +from sklearn.model_selection import train_test_split +from sklearn.ensemble import RandomForestClassifier +from sklearn.preprocessing import OneHotEncoder +import numpy as np +import re +import os + + +class DiseasePredictor: + def __init__(self, csv_path): + logging.info("\n\nInitializing DiseasePredictor") + + self.model = RandomForestClassifier(random_state=42) + self.data = pd.read_csv(csv_path) + self.features = self.data.columns[0:-1] # Exclude the outcome variable + self.outcome = self.data.columns[0] # The outcome variable + self.categorical_features = self.data[self.features].select_dtypes(include=['object']).columns.tolist() + self.numerical_features = self.data[self.features].select_dtypes(exclude=['object']).columns.tolist() + self.one_hot_encoder = OneHotEncoder(handle_unknown='ignore') # Set handle_unknown to 'ignore' + self.train() + + def train(self): + logging.info("Training model") + + # Preprocess the data + X = self.data[self.features].copy() + y = self.data[self.outcome] + + # One-hot encode the categorical variables + X_encoded = pd.get_dummies(X, columns=self.categorical_features) + # Use the DataFrame directly instead of converting to NumPy array + # This maintains the feature names + self.feature_names = X_encoded.columns.tolist() + self.one_hot_encoder.fit(X[self.categorical_features]) + + # Split the data + self.X_train, self.X_test, self.y_train, self.y_test = train_test_split(X_encoded, y, test_size=0.2, + random_state=42) + + # Train the model + self.model.fit(self.X_train, self.y_train) # X_train is a DataFrame with feature names + logging.info(f"Training accuracy: {self.model.score(self.X_test, self.y_test):.2f}") + + + def extract_features(self, text): + logging.info("Extracting features from text") + + feature_values = {} + for feature in self.features: + if feature != 'Age' and feature != 'Gender': + # These are the binary categorical features + feature_values[feature] = 'Yes' if feature.lower() in text.lower() else 'No' + + # Extract age if mentioned + age_search = re.search(r'(\d+)\s*years?', text) + feature_values['Age'] = int(age_search.group(1)) if age_search else np.nan + + # Extract gender if mentioned + if 'male' in text.lower(): + feature_values['Gender'] = 'Male' + elif 'female' in text.lower(): + feature_values['Gender'] = 'Female' + else: + feature_values['Gender'] = np.nan # Missing value + + logging.info(f"Tokens extracted: {feature_values}") + + # Convert the features into a DataFrame to be consistent with the model's input format + features_df = pd.DataFrame([feature_values]) + + # One-hot encode the extracted features + aligned_features_df = pd.DataFrame(columns=self.feature_names) + aligned_features_df = aligned_features_df._append(features_df, ignore_index=True) + + # Fill missing columns with zeros + missing_cols = set(self.feature_names) - set(aligned_features_df.columns) + for c in missing_cols: + aligned_features_df[c] = 0 + + # Ensure the order of columns matches the training data + aligned_features_df = aligned_features_df[self.feature_names] + + # Now we no longer need to one-hot encode 'Age' since it was not one-hot encoded during training + return aligned_features_df + + def predict(self, text): + logging.info("Making a prediction") + + features_df_encoded = self.extract_features(text) + predictions = self.model.predict_proba(features_df_encoded) + + # Create a dictionary to store the probabilities for each disease class + disease_probabilities = {} + for disease_class, probability in zip(self.model.classes_, predictions[0]): + # Map probabilities from 0 to 100 and round to two decimal places + mapped_probability = round(probability * 100, 2) + disease_probabilities[disease_class.lower()] = mapped_probability + + # Sort the disease probabilities in descending order and select the top three + sorted_probabilities = dict(sorted(disease_probabilities.items(), key=lambda item: item[1], reverse=True)[:3]) + + # Generate JSON output + json_output = { + "StatusCode": 200, + "Message": "Prediction successfully computed.", + "Data": [] + } + count = 0 + for key, value in sorted_probabilities.items(): + # Append each key and value as a dictionary to ensure proper JSON object format + json_output["Data"].append({"disease": key, "probability": value}) + count += 1 # Increment the counter + if count == 3: + break + # Return the JSON object + return json.dumps(json_output, indent=4) + + +# Example usage: + +if __name__ == "__main__": + if len(sys.argv) != 2: + logging.error("Incorrect number of arguments provided.") + json_output = { + "StatusCode": 400, + "Message": "Incorrect number of arguments provided.", + "Data": [] + } + print(json.dumps(json_output, indent=4)) + sys.exit(1) + + logging.basicConfig(filename='disease_prediction.log', level=logging.INFO, + format='%(asctime)s %(levelname)s:%(message)s') + + text = sys.argv[1] + script_directory = os.path.dirname(os.path.abspath(__file__)) + csv_path = os.path.join(script_directory, 'dataset.csv') + + predictor = DiseasePredictor(csv_path) + prediction_json = predictor.predict(text) + print(prediction_json) diff --git a/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionValidator.cs b/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionValidator.cs new file mode 100644 index 0000000..72f7d4f --- /dev/null +++ b/backend/Application/Endpoints/SicknessPrediction/SicknessPredictionValidator.cs @@ -0,0 +1,13 @@ +using FluentValidation; + +namespace Application.Endpoints.SicknessPrediction; + +public class SicknessPredictionValidator : AbstractValidator +{ + public SicknessPredictionValidator() + { + RuleFor(x => x.Text) + .NotEmpty().WithMessage("Text is required") + .WithErrorCode(HttpStatusCodes.BadRequest.ToString()); + } +} \ No newline at end of file diff --git a/backend/Application/Endpoints/SicknessPrediction/dataset.csv b/backend/Application/Endpoints/SicknessPrediction/dataset.csv new file mode 100644 index 0000000..d64e2e0 --- /dev/null +++ b/backend/Application/Endpoints/SicknessPrediction/dataset.csv @@ -0,0 +1,350 @@ +Disease,Fever,Cough,Fatigue,Difficulty Breathing,Age,Gender,Blood Pressure,Cholesterol Level,Outcome Variable +Influenza,Yes,No,Yes,Yes,19,Female,Low,Normal,Positive +Common Cold,No,Yes,Yes,No,25,Female,Normal,Normal,Negative +Eczema,No,Yes,Yes,No,25,Female,Normal,Normal,Negative +Asthma,Yes,Yes,No,Yes,25,Male,Normal,Normal,Positive +Asthma,Yes,Yes,No,Yes,25,Male,Normal,Normal,Positive +Eczema,Yes,No,No,No,25,Female,Normal,Normal,Positive +Influenza,Yes,Yes,Yes,Yes,25,Female,Normal,Normal,Positive +Influenza,Yes,Yes,Yes,Yes,25,Female,Normal,Normal,Positive +Hyperthyroidism,No,Yes,No,No,28,Female,Normal,Normal,Negative +Hyperthyroidism,No,Yes,No,No,28,Female,Normal,Normal,Negative +Asthma,Yes,No,No,Yes,28,Male,High,Normal,Positive +Allergic Rhinitis,No,Yes,Yes,No,29,Female,Normal,Low,Negative +Anxiety Disorders,No,Yes,No,No,29,Female,Normal,High,Negative +Common Cold,No,No,No,No,29,Female,Low,Normal,Negative +Diabetes,No,No,No,No,29,Male,Low,Normal,Negative +Gastroenteritis,No,Yes,No,No,29,Female,Normal,Normal,Negative +Pancreatitis,Yes,No,No,No,29,Female,High,Normal,Negative +Rheumatoid Arthritis,No,Yes,Yes,Yes,29,Female,High,High,Negative +Depression,Yes,Yes,Yes,Yes,29,Male,High,Normal,Positive +Liver Cancer,Yes,Yes,Yes,Yes,29,Female,Normal,Normal,Positive +Stroke,Yes,Yes,Yes,Yes,29,Female,Normal,Normal,Positive +Urinary Tract Infection,Yes,Yes,Yes,No,29,Male,High,High,Positive +Dengue Fever,Yes,No,Yes,No,30,Female,Normal,Normal,Negative +Dengue Fever,Yes,No,Yes,No,30,Female,Normal,Normal,Negative +Eczema,No,Yes,Yes,No,30,Male,High,High,Negative +Gastroenteritis,Yes,Yes,Yes,No,30,Male,High,High,Negative +Hepatitis,Yes,Yes,Yes,Yes,30,Male,High,Normal,Negative +Kidney Cancer,No,No,Yes,No,30,Male,Normal,Normal,Negative +Migraine,Yes,No,No,No,30,Female,Normal,Normal,Negative +Migraine,No,Yes,Yes,No,30,Female,Normal,Normal,Negative +Muscular Dystrophy,No,No,Yes,No,30,Male,High,High,Negative +Sinusitis,No,Yes,Yes,No,30,Male,Normal,Normal,Negative +Ulcerative Colitis,Yes,Yes,No,No,30,Female,Normal,Normal,Negative +Ulcerative Colitis,No,Yes,Yes,No,30,Female,Normal,Normal,Negative +Asthma,Yes,Yes,No,Yes,30,Female,Normal,Normal,Positive +Asthma,Yes,Yes,No,Yes,30,Female,Normal,Normal,Positive +Asthma,Yes,Yes,Yes,Yes,30,Female,Normal,Normal,Positive +Bipolar Disorder,No,No,Yes,No,30,Female,High,High,Positive +Bronchitis,Yes,Yes,No,Yes,30,Female,Low,Normal,Positive +Bronchitis,Yes,Yes,Yes,Yes,30,Male,High,High,Positive +Bronchitis,Yes,Yes,Yes,Yes,30,Male,High,High,Positive +Cerebral Palsy,No,No,Yes,Yes,30,Female,Normal,Normal,Positive +Colorectal Cancer,No,No,Yes,No,30,Female,Normal,High,Positive +Eczema,Yes,No,No,No,30,Male,High,High,Positive +Hypertensive Heart Disease,No,No,Yes,No,30,Female,High,High,Positive +Influenza,Yes,Yes,Yes,No,30,Male,High,Normal,Positive +Influenza,Yes,Yes,Yes,Yes,30,Female,Normal,Normal,Positive +Multiple Sclerosis,No,No,Yes,No,30,Female,High,High,Positive +Myocardial Infarction (Heart...,Yes,Yes,Yes,Yes,30,Female,High,High,Positive +Urinary Tract Infection (UTI),Yes,No,No,No,30,Female,Normal,Normal,Positive +Asthma,No,No,No,Yes,31,Male,Normal,Low,Negative +Osteoporosis,No,No,No,Yes,31,Male,Low,Normal,Negative +Common Cold,Yes,No,Yes,Yes,31,Male,High,High,Positive +Migraine,Yes,No,No,No,31,Female,Normal,Normal,Positive +Pneumonia,Yes,No,Yes,Yes,32,Female,High,Normal,Positive +Allergic Rhinitis,No,No,Yes,No,35,Female,Normal,Low,Negative +Asthma,No,Yes,Yes,Yes,35,Female,Normal,High,Negative +Asthma,Yes,Yes,Yes,Yes,35,Female,Normal,Normal,Negative +Asthma,No,Yes,Yes,Yes,35,Female,High,Normal,Negative +Asthma,No,Yes,Yes,Yes,35,Female,High,Normal,Negative +Atherosclerosis,No,No,Yes,No,35,Male,Normal,Normal,Negative +Chronic Obstructive Pulmonary...,Yes,Yes,Yes,Yes,35,Male,Normal,Normal,Negative +Common Cold,Yes,Yes,Yes,No,35,Male,High,Normal,Negative +Eczema,No,Yes,No,No,35,Male,High,Normal,Negative +Epilepsy,No,No,Yes,No,35,Male,High,High,Negative +Hypertension,Yes,Yes,Yes,No,35,Female,High,Normal,Negative +Hyperthyroidism,Yes,Yes,Yes,No,35,Female,Normal,Normal,Negative +Obsessive-Compulsive Disorde...,No,No,Yes,No,35,Male,Normal,Normal,Negative +Pneumonia,Yes,Yes,Yes,Yes,35,Female,Normal,Normal,Negative +Pneumonia,Yes,Yes,Yes,Yes,35,Female,Normal,Normal,Negative +Psoriasis,Yes,No,No,No,35,Female,Normal,Low,Negative +Psoriasis,No,Yes,Yes,No,35,Female,Normal,Low,Negative +Rubella,Yes,No,Yes,No,35,Female,High,Normal,Negative +Rubella,Yes,No,Yes,No,35,Female,High,Normal,Negative +Urinary Tract Infection (UTI),No,Yes,Yes,No,35,Male,High,High,Negative +Asthma,Yes,Yes,No,Yes,35,Male,Normal,Normal,Positive +Asthma,Yes,Yes,No,Yes,35,Male,Normal,Normal,Positive +Cirrhosis,No,No,Yes,No,35,Female,Normal,High,Positive +Conjunctivitis (Pink Eye),No,Yes,No,No,35,Female,High,High,Positive +Depression,No,No,Yes,No,35,Female,Normal,High,Positive +Gastroenteritis,Yes,No,Yes,Yes,35,Male,Low,High,Positive +Hyperthyroidism,Yes,Yes,Yes,No,35,Male,High,High,Positive +Hyperthyroidism,Yes,Yes,Yes,No,35,Male,High,High,Positive +Kidney Cancer,No,No,Yes,No,35,Male,High,High,Positive +Liver Cancer,No,No,Yes,No,35,Female,High,High,Positive +Liver Disease,No,No,Yes,No,35,Male,High,High,Positive +Malaria,Yes,No,No,No,35,Male,High,High,Positive +Malaria,Yes,No,No,No,35,Male,High,High,Positive +Migraine,No,Yes,Yes,No,35,Male,High,High,Positive +Migraine,Yes,No,No,No,35,Male,High,High,Positive +Pancreatitis,No,No,Yes,No,35,Male,Normal,High,Positive +Rheumatoid Arthritis,Yes,Yes,Yes,No,35,Male,Normal,Low,Positive +Rheumatoid Arthritis,No,No,Yes,No,35,Female,Normal,Low,Positive +Spina Bifida,No,No,Yes,No,35,Female,Normal,Normal,Positive +Ulcerative Colitis,No,No,Yes,No,35,Male,High,High,Positive +Ulcerative Colitis,Yes,No,No,No,35,Male,High,High,Positive +Urinary Tract Infection,Yes,No,Yes,No,35,Female,Normal,High,Positive +Allergic Rhinitis,No,Yes,No,No,38,Female,Low,Normal,Negative +Depression,No,No,No,No,38,Female,Normal,High,Negative +Gastroenteritis,No,No,No,No,38,Male,Normal,Low,Negative +Influenza,No,No,No,No,38,Male,Normal,Normal,Negative +Kidney Disease,No,No,Yes,No,38,Female,Low,Normal,Negative +Liver Cancer,Yes,Yes,No,No,38,Female,High,Normal,Negative +Liver Disease,No,Yes,No,Yes,38,Male,Low,Normal,Negative +Osteoporosis,No,Yes,No,No,38,Female,Normal,High,Negative +Stroke,Yes,Yes,No,No,38,Female,High,Normal,Negative +Anxiety Disorders,Yes,No,Yes,Yes,38,Male,High,High,Positive +Diabetes,Yes,No,Yes,Yes,38,Male,High,Low,Positive +Migraine,Yes,Yes,No,No,38,Male,High,High,Positive +Osteoarthritis,Yes,Yes,Yes,No,38,Male,High,High,Positive +Pneumonia,Yes,Yes,Yes,Yes,38,Male,Normal,Normal,Positive +Klinefelter Syndrome,No,No,Yes,No,39,Female,Normal,Normal,Positive +Acne,No,No,Yes,No,40,Male,Normal,Normal,Negative +Brain Tumor,No,No,Yes,No,40,Male,Normal,Normal,Negative +Bronchitis,No,Yes,No,Yes,40,Female,Normal,Normal,Negative +Cystic Fibrosis,No,No,Yes,Yes,40,Male,High,High,Negative +Diabetes,Yes,No,No,No,40,Female,High,High,Negative +Glaucoma,No,No,Yes,No,40,Male,High,Normal,Negative +Osteoarthritis,No,No,Yes,No,40,Male,High,Normal,Negative +Rabies,Yes,Yes,No,No,40,Female,High,Normal,Negative +Rabies,Yes,Yes,No,No,40,Female,High,Normal,Negative +Asthma,Yes,No,Yes,No,40,Male,Low,Normal,Positive +Asthma,Yes,Yes,No,Yes,40,Female,Normal,Normal,Positive +Asthma,Yes,Yes,No,Yes,40,Female,Normal,Normal,Positive +Asthma,No,No,Yes,Yes,40,Male,High,High,Positive +Asthma,Yes,No,Yes,Yes,40,Male,Normal,High,Positive +Asthma,Yes,No,Yes,Yes,40,Male,Normal,High,Positive +Chickenpox,No,Yes,No,No,40,Male,Normal,High,Positive +Chickenpox,No,Yes,No,No,40,Male,Normal,High,Positive +Coronary Artery Disease,No,No,Yes,No,40,Female,High,High,Positive +"Eating Disorders (Anorexia,...",No,No,Yes,No,40,Female,High,High,Positive +Fibromyalgia,No,No,Yes,No,40,Female,High,High,Positive +Gastroenteritis,Yes,Yes,Yes,No,40,Male,High,High,Positive +Hemophilia,No,No,Yes,No,40,Female,Normal,Normal,Positive +Hyperthyroidism,No,No,Yes,No,40,Male,High,High,Positive +Hypoglycemia,No,No,Yes,No,40,Female,High,High,Positive +Lymphoma,No,Yes,No,No,40,Female,Normal,High,Positive +Pneumonia,Yes,Yes,Yes,Yes,40,Female,Normal,High,Positive +Psoriasis,No,Yes,Yes,No,40,Male,High,Normal,Positive +Psoriasis,Yes,No,No,No,40,Male,High,Normal,Positive +Psoriasis,No,Yes,No,No,40,Female,Normal,High,Positive +Tuberculosis,Yes,Yes,Yes,Yes,40,Male,High,High,Positive +Tuberculosis,Yes,Yes,Yes,Yes,40,Male,High,High,Positive +Anxiety Disorders,No,No,No,No,42,Male,Low,Normal,Negative +Common Cold,Yes,Yes,No,No,42,Female,High,High,Negative +Depression,Yes,No,No,Yes,42,Male,High,Normal,Negative +Influenza,No,Yes,No,No,42,Female,Normal,High,Negative +Kidney Cancer,Yes,No,No,No,42,Female,Normal,Normal,Negative +Liver Cancer,Yes,No,Yes,Yes,42,Male,Normal,Low,Negative +Liver Disease,Yes,No,No,Yes,42,Female,Normal,Normal,Negative +Lung Cancer,Yes,No,Yes,Yes,42,Male,Normal,Low,Negative +Migraine,Yes,Yes,Yes,No,42,Male,High,High,Negative +Osteoarthritis,No,No,Yes,No,42,Male,Normal,Low,Negative +Stroke,Yes,No,Yes,No,42,Male,Normal,Low,Negative +Urinary Tract Infection,No,Yes,Yes,Yes,42,Female,Normal,Low,Negative +Diabetes,Yes,Yes,Yes,No,42,Male,High,Normal,Positive +Hypothyroidism,Yes,Yes,Yes,No,42,Female,High,High,Positive +Hypothyroidism,Yes,Yes,Yes,No,42,Female,High,High,Positive +Kidney Disease,Yes,No,Yes,No,42,Female,High,Low,Positive +Pneumonia,No,Yes,Yes,Yes,43,Female,High,Normal,Positive +Allergic Rhinitis,No,Yes,Yes,No,45,Male,High,Normal,Negative +Autism Spectrum Disorder (ASD),No,No,Yes,No,45,Male,Normal,Normal,Negative +Crohn's Disease,Yes,No,Yes,No,45,Male,High,Normal,Negative +Hepatitis,Yes,No,Yes,No,45,Female,High,High,Negative +Hepatitis,Yes,No,Yes,No,45,Female,High,High,Negative +Hyperglycemia,No,No,Yes,No,45,Male,Normal,Normal,Negative +Kidney Cancer,No,Yes,Yes,Yes,45,Male,Normal,Low,Negative +Kidney Disease,Yes,Yes,No,No,45,Male,Normal,High,Negative +Melanoma,Yes,No,Yes,No,45,Male,High,Normal,Negative +Migraine,No,No,No,No,45,Female,Low,Normal,Negative +Ovarian Cancer,No,No,Yes,No,45,Male,Normal,Normal,Negative +Pancreatitis,No,Yes,Yes,Yes,45,Male,Normal,Low,Negative +Rheumatoid Arthritis,Yes,No,No,No,45,Male,Normal,Normal,Negative +Stroke,No,No,Yes,No,45,Male,Normal,Normal,Negative +Turner Syndrome,No,No,Yes,No,45,Male,High,High,Negative +Turner Syndrome,No,No,Yes,No,45,Male,High,High,Negative +Urinary Tract Infection,No,No,No,No,45,Female,Low,Normal,Negative +Zika Virus,No,Yes,Yes,No,45,Female,High,High,Negative +Zika Virus,No,Yes,Yes,No,45,Female,High,High,Negative +Allergic Rhinitis,Yes,Yes,Yes,No,45,Male,High,Normal,Positive +Anxiety Disorders,Yes,Yes,Yes,No,45,Male,High,Normal,Positive +Asthma,Yes,Yes,No,Yes,45,Male,Normal,Normal,Positive +Asthma,Yes,Yes,No,Yes,45,Male,Normal,Normal,Positive +Cataracts,No,No,Yes,No,45,Female,Normal,High,Positive +Crohn's Disease,No,No,Yes,No,45,Female,High,High,Positive +Crohn's Disease,Yes,Yes,Yes,No,45,Female,High,High,Positive +Depression,No,No,Yes,No,45,Female,High,High,Positive +Diabetes,Yes,No,Yes,No,45,Female,High,High,Positive +Diabetes,No,Yes,Yes,No,45,Male,Normal,High,Positive +Hypertension,Yes,No,Yes,No,45,Male,Normal,High,Positive +Hypothyroidism,No,No,Yes,No,45,Female,High,High,Positive +Liver Disease,Yes,Yes,Yes,No,45,Female,Normal,High,Positive +Multiple Sclerosis,Yes,No,No,No,45,Female,High,High,Positive +Multiple Sclerosis,Yes,No,No,No,45,Female,High,High,Positive +Osteoarthritis,Yes,No,Yes,Yes,45,Male,High,Normal,Positive +Osteoporosis,Yes,Yes,Yes,No,45,Female,Normal,High,Positive +Pneumocystis Pneumonia (PCP),Yes,Yes,Yes,No,45,Female,High,High,Positive +Pneumonia,Yes,Yes,Yes,Yes,45,Male,High,High,Positive +Scoliosis,No,No,No,No,45,Female,High,High,Positive +Sickle Cell Anemia,No,No,Yes,No,45,Female,Normal,Normal,Positive +Tetanus,No,No,Yes,No,45,Male,Normal,High,Positive +Tetanus,No,No,Yes,No,45,Male,Normal,High,Positive +Hypertension,No,No,No,No,48,Female,Low,High,Negative +Hypothyroidism,No,No,Yes,No,48,Male,Normal,High,Negative +Hypothyroidism,No,No,Yes,No,48,Male,Normal,High,Negative +Allergic Rhinitis,Yes,No,No,No,50,Male,High,High,Negative +Anemia,No,No,Yes,No,50,Male,Normal,Normal,Negative +Anxiety Disorders,No,No,Yes,No,50,Male,Normal,Normal,Negative +Cholera,Yes,No,Yes,Yes,50,Female,High,High,Negative +Cholera,Yes,No,Yes,Yes,50,Female,High,High,Negative +Crohn's Disease,Yes,Yes,Yes,No,50,Male,Normal,High,Negative +Crohn's Disease,No,No,Yes,No,50,Male,Normal,High,Negative +Depression,No,Yes,Yes,No,50,Female,Low,Low,Negative +Diabetes,No,Yes,No,No,50,Male,Normal,High,Negative +Endometriosis,Yes,No,No,No,50,Male,High,Normal,Negative +Hypertension,No,Yes,No,No,50,Female,Normal,Low,Negative +Hypothyroidism,Yes,Yes,Yes,No,50,Male,Normal,High,Negative +Kidney Cancer,No,Yes,No,No,50,Male,Low,High,Negative +Kidney Disease,No,Yes,No,Yes,50,Male,Normal,Normal,Negative +Pancreatitis,No,Yes,No,No,50,Male,Low,High,Negative +Rheumatoid Arthritis,No,Yes,No,No,50,Female,Low,Normal,Negative +Sepsis,Yes,Yes,Yes,No,50,Male,Normal,Normal,Negative +Sleep Apnea,Yes,No,Yes,Yes,50,Male,High,High,Negative +Urinary Tract Infection,Yes,Yes,No,Yes,50,Male,High,Normal,Negative +Asthma,Yes,Yes,Yes,Yes,50,Female,Normal,High,Positive +Bronchitis,Yes,Yes,Yes,Yes,50,Male,High,High,Positive +Down Syndrome,No,No,Yes,No,50,Female,High,High,Positive +Ebola Virus,Yes,Yes,Yes,Yes,50,Male,Normal,Normal,Positive +Ebola Virus,Yes,Yes,Yes,Yes,50,Male,Normal,Normal,Positive +Eczema,No,Yes,No,No,50,Female,High,High,Positive +Gastroenteritis,Yes,Yes,Yes,Yes,50,Female,High,Normal,Positive +Klinefelter Syndrome,No,No,Yes,No,50,Female,Normal,Normal,Positive +Liver Cancer,No,Yes,Yes,Yes,50,Male,High,High,Positive +Lyme Disease,Yes,No,No,No,50,Male,Normal,High,Positive +Lyme Disease,Yes,No,No,No,50,Male,Normal,High,Positive +Pancreatic Cancer,No,No,Yes,No,50,Female,High,High,Positive +Pneumothorax,No,No,Yes,Yes,50,Female,High,High,Positive +Stroke,No,Yes,Yes,Yes,50,Male,High,High,Positive +Ulcerative Colitis,No,Yes,Yes,No,50,Female,Normal,High,Positive +Hypertension,Yes,Yes,No,No,52,Male,Normal,Low,Negative +Multiple Sclerosis,No,Yes,Yes,No,52,Male,Normal,Normal,Negative +Multiple Sclerosis,No,Yes,Yes,No,52,Male,Normal,Normal,Negative +Appendicitis,Yes,No,Yes,No,55,Male,Normal,Normal,Negative +Bronchitis,No,No,Yes,Yes,55,Male,High,High,Negative +Bronchitis,Yes,Yes,Yes,Yes,55,Male,High,Normal,Negative +Common Cold,Yes,No,Yes,Yes,55,Male,Normal,Low,Negative +Diabetes,No,Yes,No,No,55,Female,Normal,High,Negative +Esophageal Cancer,No,No,Yes,No,55,Male,Normal,Normal,Negative +HIV/AIDS,Yes,No,No,No,55,Female,High,High,Negative +HIV/AIDS,Yes,No,No,No,55,Female,High,High,Negative +Hypertension,No,Yes,No,No,55,Female,Normal,Low,Negative +Liver Disease,No,Yes,Yes,No,55,Male,High,Low,Negative +Marfan Syndrome,No,No,Yes,No,55,Male,High,High,Negative +Migraine,No,Yes,Yes,Yes,55,Female,Normal,Low,Negative +Osteoporosis,No,No,Yes,No,55,Male,High,Normal,Negative +Parkinson's Disease,No,No,Yes,No,55,Female,Normal,Low,Negative +Parkinson's Disease,No,No,Yes,No,55,Female,Normal,Low,Negative +Anxiety Disorders,Yes,Yes,No,No,55,Female,Normal,Low,Positive +Coronary Artery Disease,No,No,Yes,No,55,Female,Normal,Normal,Positive +Coronary Artery Disease,No,No,Yes,No,55,Female,Normal,Normal,Positive +Hemorrhoids,No,No,No,No,55,Female,High,High,Positive +Hypertension,Yes,No,Yes,No,55,Male,High,Normal,Positive +Hypothyroidism,No,No,Yes,No,55,Female,High,High,Positive +Osteoarthritis,Yes,Yes,No,No,55,Female,High,High,Positive +Osteoporosis,Yes,No,Yes,Yes,55,Male,High,Low,Positive +Osteoporosis,No,Yes,Yes,No,55,Female,Normal,Normal,Positive +Osteoporosis,Yes,No,Yes,No,55,Female,Normal,Normal,Positive +Osteoporosis,Yes,No,Yes,No,55,Female,Normal,Normal,Positive +Polycystic Ovary Syndrome (PCOS),Yes,Yes,No,No,55,Female,Normal,Normal,Positive +Systemic Lupus Erythematosus...,No,Yes,Yes,No,55,Female,High,High,Positive +Typhoid Fever,No,Yes,No,No,55,Male,Normal,Low,Positive +Typhoid Fever,No,Yes,No,No,55,Male,Normal,Low,Positive +Influenza,Yes,Yes,Yes,Yes,56,Male,High,High,Positive +Pneumonia,Yes,Yes,No,Yes,57,Male,Normal,High,Negative +Breast Cancer,No,No,Yes,No,60,Male,High,High,Negative +Coronary Artery Disease,Yes,Yes,No,No,60,Male,High,High,Negative +Coronary Artery Disease,Yes,Yes,No,No,60,Male,High,High,Negative +Hyperthyroidism,No,No,Yes,No,60,Male,Normal,Normal,Negative +Measles,Yes,Yes,No,No,60,Female,High,Normal,Negative +Measles,Yes,Yes,No,No,60,Female,High,Normal,Negative +Osteoarthritis,No,Yes,No,Yes,60,Female,Normal,Normal,Negative +Osteomyelitis,No,No,Yes,No,60,Male,Normal,Normal,Negative +Osteoporosis,Yes,No,No,No,60,Male,High,High,Negative +Osteoporosis,No,Yes,No,No,60,Male,High,High,Negative +Osteoporosis,No,Yes,No,No,60,Male,High,High,Negative +Polio,Yes,Yes,Yes,No,60,Male,Normal,Normal,Negative +Asthma,Yes,Yes,Yes,Yes,60,Female,High,High,Positive +Chronic Kidney Disease,No,No,Yes,No,60,Female,Normal,High,Positive +Hemophilia,No,No,Yes,No,60,Female,Normal,Normal,Positive +Hepatitis B,No,Yes,Yes,No,60,Male,Normal,Low,Positive +Hepatitis B,No,Yes,Yes,No,60,Male,Normal,Low,Positive +Hypertension,No,No,Yes,No,60,Female,High,Normal,Positive +Hypertension,Yes,No,Yes,No,60,Male,High,Normal,Positive +Hypertension,No,No,No,No,60,Female,High,High,Positive +Kidney Cancer,Yes,Yes,Yes,No,60,Female,High,Normal,Positive +Kidney Disease,Yes,Yes,Yes,Yes,60,Female,High,High,Positive +Osteoporosis,Yes,No,Yes,No,60,Male,High,Normal,Positive +Pancreatitis,Yes,Yes,Yes,No,60,Female,High,Normal,Positive +Parkinson's Disease,Yes,Yes,No,No,60,Male,High,Normal,Positive +Parkinson's Disease,Yes,Yes,No,No,60,Male,High,Normal,Positive +Prader-Willi Syndrome,No,No,Yes,No,60,Female,Normal,Normal,Positive +Rheumatoid Arthritis,No,No,Yes,No,60,Female,High,High,Positive +Thyroid Cancer,No,No,Yes,No,60,Female,High,High,Positive +Tuberculosis,Yes,Yes,Yes,No,60,Female,High,High,Positive +Bladder Cancer,No,No,Yes,No,65,Male,Normal,Normal,Negative +Diabetes,No,No,Yes,No,65,Male,Normal,High,Negative +Otitis Media (Ear Infection),Yes,Yes,Yes,No,65,Male,Normal,Normal,Negative +Stroke,Yes,No,Yes,No,65,Female,High,Low,Negative +Stroke,Yes,No,Yes,No,65,Female,High,Low,Negative +Tourette Syndrome,No,No,Yes,No,65,Male,High,High,Negative +Urinary Tract Infection (UTI),Yes,No,Yes,No,65,Male,High,Normal,Negative +Alzheimer's Disease,No,Yes,No,No,65,Male,Normal,High,Positive +Alzheimer's Disease,No,Yes,No,No,65,Male,Normal,High,Positive +Alzheimer's Disease,No,No,Yes,No,65,Female,High,High,Positive +Bronchitis,Yes,No,Yes,Yes,65,Male,High,High,Positive +Chronic Obstructive Pulmonary Disease (COPD),Yes,No,Yes,Yes,65,Female,High,High,Positive +Chronic Obstructive Pulmonary Disease (COPD),Yes,No,Yes,Yes,65,Female,High,High,Positive +Dementia,No,No,Yes,No,65,Female,High,High,Positive +Diabetes,Yes,Yes,Yes,No,65,Female,Normal,High,Positive +Diverticulitis,No,No,Yes,No,65,Female,High,High,Positive +Liver Cancer,Yes,Yes,Yes,No,65,Female,High,High,Positive +Lung Cancer,Yes,Yes,Yes,No,65,Female,High,High,Positive +Lung Cancer,Yes,No,Yes,No,65,Female,Normal,High,Positive +Mumps,No,No,Yes,No,65,Male,Normal,High,Positive +Mumps,No,No,Yes,No,65,Male,Normal,High,Positive +Osteoporosis,No,Yes,Yes,No,65,Female,High,High,Positive +Stroke,Yes,Yes,Yes,No,65,Female,High,High,Positive +Alzheimer's Disease,Yes,No,Yes,No,70,Female,High,Normal,Negative +Alzheimer's Disease,Yes,No,Yes,No,70,Female,High,Normal,Negative +Cholecystitis,No,No,Yes,No,70,Male,Normal,Normal,Negative +Chronic Obstructive Pulmonary Disease (COPD),No,Yes,Yes,Yes,70,Male,Normal,High,Negative +Chronic Obstructive Pulmonary Disease (COPD),No,Yes,Yes,Yes,70,Male,Normal,High,Negative +Osteoporosis,Yes,No,No,No,70,Male,Normal,Normal,Negative +Parkinson's Disease,No,No,Yes,No,70,Male,Normal,Normal,Negative +Prostate Cancer,Yes,Yes,No,No,70,Male,High,Normal,Negative +Schizophrenia,No,Yes,Yes,No,70,Male,Normal,Normal,Negative +Gout,Yes,No,Yes,No,70,Female,Normal,High,Positive +Migraine,No,No,Yes,No,70,Female,Normal,Normal,Positive +Stroke,No,Yes,No,No,70,Male,Normal,High,Positive +Stroke,No,Yes,No,No,70,Male,Normal,High,Positive +Testicular Cancer,No,No,Yes,No,70,Female,High,High,Positive +Tonsillitis,Yes,Yes,Yes,No,70,Female,High,High,Positive +Williams Syndrome,No,No,Yes,No,70,Female,Normal,Normal,Positive +Stroke,Yes,No,Yes,No,80,Female,High,High,Positive +Stroke,Yes,No,Yes,No,80,Female,High,High,Positive +Stroke,Yes,No,Yes,No,85,Male,High,High,Positive +Stroke,Yes,No,Yes,No,85,Male,High,High,Positive +Stroke,Yes,No,Yes,No,90,Female,High,High,Positive +Stroke,Yes,No,Yes,No,90,Female,High,High,Positive \ No newline at end of file diff --git a/backend/Application/Endpoints/SicknessPrediction/disease_prediction.log b/backend/Application/Endpoints/SicknessPrediction/disease_prediction.log new file mode 100644 index 0000000..5378ab2 --- /dev/null +++ b/backend/Application/Endpoints/SicknessPrediction/disease_prediction.log @@ -0,0 +1,6 @@ +Initializing DiseasePredictor +2024-04-12 11:57:47,966 INFO:Training model +2024-04-12 11:57:48,226 INFO:Training accuracy: 0.77 +2024-04-12 11:57:48,226 INFO:Making a prediction +2024-04-12 11:57:48,226 INFO:Extracting features from text +2024-04-12 11:57:48,226 INFO:Tokens extracted: {'Disease': 'No', 'Fever': 'Yes', 'Cough': 'No', 'Fatigue': 'No', 'Difficulty Breathing': 'No', 'Blood Pressure': 'Yes', 'Cholesterol Level': 'No', 'Age': 40, 'Gender': 'Male'} diff --git a/backend/Application/bin/Debug/net8.0/Application.dll b/backend/Application/bin/Debug/net8.0/Application.dll index d9570ad..a759edb 100644 Binary files a/backend/Application/bin/Debug/net8.0/Application.dll and b/backend/Application/bin/Debug/net8.0/Application.dll differ diff --git a/backend/Application/bin/Debug/net8.0/Application.pdb b/backend/Application/bin/Debug/net8.0/Application.pdb index 0de85f2..104c75d 100644 Binary files a/backend/Application/bin/Debug/net8.0/Application.pdb and b/backend/Application/bin/Debug/net8.0/Application.pdb differ diff --git a/backend/Application/bin/Debug/net8.0/Core.dll b/backend/Application/bin/Debug/net8.0/Core.dll index 7e1e95e..0085c1f 100644 Binary files a/backend/Application/bin/Debug/net8.0/Core.dll and b/backend/Application/bin/Debug/net8.0/Core.dll differ diff --git a/backend/Application/bin/Debug/net8.0/Core.pdb b/backend/Application/bin/Debug/net8.0/Core.pdb index a45b614..0b3ee6d 100644 Binary files a/backend/Application/bin/Debug/net8.0/Core.pdb and b/backend/Application/bin/Debug/net8.0/Core.pdb differ diff --git a/backend/Application/obj/Application.csproj.nuget.dgspec.json b/backend/Application/obj/Application.csproj.nuget.dgspec.json index f65ba02..19ba6c9 100644 --- a/backend/Application/obj/Application.csproj.nuget.dgspec.json +++ b/backend/Application/obj/Application.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": {} + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {} }, "projects": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -26,8 +26,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj" } } } @@ -71,14 +71,14 @@ } } }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "projectName": "Core", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" diff --git a/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs b/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs index cc17bae..9e3b3f0 100644 --- a/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs +++ b/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs @@ -1,6 +1,7 @@ //------------------------------------------------------------------------------ // // 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. @@ -13,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Application")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+adba50e70b255cefbcbb5b6787d20cc26e663a9e")] [assembly: System.Reflection.AssemblyProductAttribute("Application")] [assembly: System.Reflection.AssemblyTitleAttribute("Application")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache b/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache index 9696c5a..24b689a 100644 --- a/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache +++ b/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache @@ -1 +1 @@ -2a4e5f5a0667b9cd53f41476d242e4588b36e9b8087ce5913d0c0c2c8bafbf9c +5f8281cd2084c18cbbf73a9c3ff38a3e3f7498c11d32e302b17832138ac67cfc diff --git a/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig b/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig index 5405c06..8b01177 100644 --- a/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig +++ b/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Application -build_property.ProjectDir = C:\Users\Andrei Cerbu\Desktop\backend\Application\ +build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/backend/Application/obj/Debug/net8.0/Application.assets.cache b/backend/Application/obj/Debug/net8.0/Application.assets.cache index 9b3c7a0..8b65566 100644 Binary files a/backend/Application/obj/Debug/net8.0/Application.assets.cache and b/backend/Application/obj/Debug/net8.0/Application.assets.cache differ diff --git a/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache b/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache index b85b20c..ce66fc7 100644 Binary files a/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache and b/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache differ diff --git a/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache b/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache index 03ecf33..513a385 100644 --- a/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache +++ b/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -86e211b123fab4fbb22a62673497df80187fe50a64e6611ae90fb9b9bb002aa2 +bf1fecfef745a092f6cc68b381739de75190f61b272830851e769cee93e4d170 diff --git a/backend/Application/obj/Debug/net8.0/Application.csproj.FileListAbsolute.txt b/backend/Application/obj/Debug/net8.0/Application.csproj.FileListAbsolute.txt index de7c5bc..fe23f25 100644 --- a/backend/Application/obj/Debug/net8.0/Application.csproj.FileListAbsolute.txt +++ b/backend/Application/obj/Debug/net8.0/Application.csproj.FileListAbsolute.txt @@ -13,7 +13,6 @@ C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\D C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\ref\Application.dll C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\bin\Debug\net8.0\Core.dll C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\bin\Debug\net8.0\Core.pdb -C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Applicat.44B5EDA2.Up2Date C:\Users\Andrei Cerbu\Desktop\backend\Application\bin\Debug\net8.0\Application.deps.json C:\Users\Andrei Cerbu\Desktop\backend\Application\bin\Debug\net8.0\Application.dll C:\Users\Andrei Cerbu\Desktop\backend\Application\bin\Debug\net8.0\Application.pdb @@ -44,3 +43,4 @@ C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8. C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\refint\Application.dll C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.pdb C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\ref\Application.dll +C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.csproj.CopyComplete diff --git a/backend/Application/obj/Debug/net8.0/Application.dll b/backend/Application/obj/Debug/net8.0/Application.dll index d9570ad..a759edb 100644 Binary files a/backend/Application/obj/Debug/net8.0/Application.dll and b/backend/Application/obj/Debug/net8.0/Application.dll differ diff --git a/backend/Application/obj/Debug/net8.0/Application.pdb b/backend/Application/obj/Debug/net8.0/Application.pdb index 0de85f2..104c75d 100644 Binary files a/backend/Application/obj/Debug/net8.0/Application.pdb and b/backend/Application/obj/Debug/net8.0/Application.pdb differ diff --git a/backend/Application/obj/Debug/net8.0/Application.sourcelink.json b/backend/Application/obj/Debug/net8.0/Application.sourcelink.json new file mode 100644 index 0000000..c375bae --- /dev/null +++ b/backend/Application/obj/Debug/net8.0/Application.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/adba50e70b255cefbcbb5b6787d20cc26e663a9e/*"}} \ No newline at end of file diff --git a/backend/Application/obj/Debug/net8.0/ref/Application.dll b/backend/Application/obj/Debug/net8.0/ref/Application.dll index 8c7805f..b71998e 100644 Binary files a/backend/Application/obj/Debug/net8.0/ref/Application.dll and b/backend/Application/obj/Debug/net8.0/ref/Application.dll differ diff --git a/backend/Application/obj/Debug/net8.0/refint/Application.dll b/backend/Application/obj/Debug/net8.0/refint/Application.dll index 8c7805f..b71998e 100644 Binary files a/backend/Application/obj/Debug/net8.0/refint/Application.dll and b/backend/Application/obj/Debug/net8.0/refint/Application.dll differ diff --git a/backend/Application/obj/project.assets.json b/backend/Application/obj/project.assets.json index 54c13d2..d5bdb35 100644 --- a/backend/Application/obj/project.assets.json +++ b/backend/Application/obj/project.assets.json @@ -844,11 +844,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -863,8 +863,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj" } } } diff --git a/backend/Application/obj/project.nuget.cache b/backend/Application/obj/project.nuget.cache index df1d0fe..eb17fef 100644 --- a/backend/Application/obj/project.nuget.cache +++ b/backend/Application/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "0ClHdlfbDgZ8zAZGcl1neMLoWmLFvZ+1Y5tTj0vJcUjNy9Ph18sNfG/KgnG0AvVyaxONeDD1RDur1o3sw58JJw==", + "dgSpecHash": "6rK5hZ4j6ClAzfxuWc17Wft98VDUQupYiEeI5viBfPq8M3e7wy2vBJ/LEy/lClFvezbz4wHPGdpeQDPOA9ZtBw==", "success": true, - "projectFilePath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "expectedPackageFiles": [ "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.core\\3.7.100.14\\awssdk.core.3.7.100.14.nupkg.sha512", "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\awssdk.securitytoken.3.7.100.14.nupkg.sha512", diff --git a/backend/Application/obj/project.packagespec.json b/backend/Application/obj/project.packagespec.json index 3c874d2..23daba5 100644 --- a/backend/Application/obj/project.packagespec.json +++ b/backend/Application/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj","projectName":"Application","projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"FluentValidation":{"target":"Package","version":"[11.9.0, )"},"MongoDB.Driver":{"target":"Package","version":"[2.24.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj","projectName":"Application","projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"FluentValidation":{"target":"Package","version":"[11.9.0, )"},"MongoDB.Driver":{"target":"Package","version":"[2.24.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/backend/Application/obj/rider.project.model.nuget.info b/backend/Application/obj/rider.project.model.nuget.info index 881c5b4..4b9af62 100644 --- a/backend/Application/obj/rider.project.model.nuget.info +++ b/backend/Application/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17127155176596989 \ No newline at end of file +17129080043820550 \ No newline at end of file diff --git a/backend/Application/obj/rider.project.restore.info b/backend/Application/obj/rider.project.restore.info index 881c5b4..4b9af62 100644 --- a/backend/Application/obj/rider.project.restore.info +++ b/backend/Application/obj/rider.project.restore.info @@ -1 +1 @@ -17127155176596989 \ No newline at end of file +17129080043820550 \ No newline at end of file diff --git a/backend/Core/bin/Debug/net8.0/Core.dll b/backend/Core/bin/Debug/net8.0/Core.dll index 7e1e95e..0085c1f 100644 Binary files a/backend/Core/bin/Debug/net8.0/Core.dll and b/backend/Core/bin/Debug/net8.0/Core.dll differ diff --git a/backend/Core/bin/Debug/net8.0/Core.pdb b/backend/Core/bin/Debug/net8.0/Core.pdb index a45b614..0b3ee6d 100644 Binary files a/backend/Core/bin/Debug/net8.0/Core.pdb and b/backend/Core/bin/Debug/net8.0/Core.pdb differ diff --git a/backend/Core/obj/Core.csproj.nuget.dgspec.json b/backend/Core/obj/Core.csproj.nuget.dgspec.json index 3e9d19a..55cdb2d 100644 --- a/backend/Core/obj/Core.csproj.nuget.dgspec.json +++ b/backend/Core/obj/Core.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": {} + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {} }, "projects": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "projectName": "Core", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" diff --git a/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs b/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs index 1bf6110..b79b8b4 100644 --- a/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs +++ b/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs @@ -1,6 +1,7 @@ //------------------------------------------------------------------------------ // // 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. @@ -13,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Core")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+adba50e70b255cefbcbb5b6787d20cc26e663a9e")] [assembly: System.Reflection.AssemblyProductAttribute("Core")] [assembly: System.Reflection.AssemblyTitleAttribute("Core")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache b/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache index 788bc6d..8c4493c 100644 --- a/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache +++ b/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache @@ -1 +1 @@ -6b75372ec2e1e7c58826b5bf52533c8862e7e84c43b04e954e756881b6eec37e +26f57634172aecf2fbb899770032e03ddc50a420b5591fe8a519ba1c408a0e99 diff --git a/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig b/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig index a823266..2791433 100644 --- a/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig +++ b/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Core -build_property.ProjectDir = C:\Users\Andrei Cerbu\Desktop\backend\Core\ +build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/backend/Core/obj/Debug/net8.0/Core.assets.cache b/backend/Core/obj/Debug/net8.0/Core.assets.cache index 26b0e2d..bfeaaf7 100644 Binary files a/backend/Core/obj/Debug/net8.0/Core.assets.cache and b/backend/Core/obj/Debug/net8.0/Core.assets.cache differ diff --git a/backend/Core/obj/Debug/net8.0/Core.dll b/backend/Core/obj/Debug/net8.0/Core.dll index 7e1e95e..0085c1f 100644 Binary files a/backend/Core/obj/Debug/net8.0/Core.dll and b/backend/Core/obj/Debug/net8.0/Core.dll differ diff --git a/backend/Core/obj/Debug/net8.0/Core.pdb b/backend/Core/obj/Debug/net8.0/Core.pdb index a45b614..0b3ee6d 100644 Binary files a/backend/Core/obj/Debug/net8.0/Core.pdb and b/backend/Core/obj/Debug/net8.0/Core.pdb differ diff --git a/backend/Core/obj/Debug/net8.0/Core.sourcelink.json b/backend/Core/obj/Debug/net8.0/Core.sourcelink.json new file mode 100644 index 0000000..c375bae --- /dev/null +++ b/backend/Core/obj/Debug/net8.0/Core.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/adba50e70b255cefbcbb5b6787d20cc26e663a9e/*"}} \ No newline at end of file diff --git a/backend/Core/obj/Debug/net8.0/ref/Core.dll b/backend/Core/obj/Debug/net8.0/ref/Core.dll index 9688dba..005a47d 100644 Binary files a/backend/Core/obj/Debug/net8.0/ref/Core.dll and b/backend/Core/obj/Debug/net8.0/ref/Core.dll differ diff --git a/backend/Core/obj/Debug/net8.0/refint/Core.dll b/backend/Core/obj/Debug/net8.0/refint/Core.dll index 9688dba..005a47d 100644 Binary files a/backend/Core/obj/Debug/net8.0/refint/Core.dll and b/backend/Core/obj/Debug/net8.0/refint/Core.dll differ diff --git a/backend/Core/obj/project.assets.json b/backend/Core/obj/project.assets.json index 012f572..9aa5c4a 100644 --- a/backend/Core/obj/project.assets.json +++ b/backend/Core/obj/project.assets.json @@ -130,11 +130,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "projectName": "Core", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" diff --git a/backend/Core/obj/project.nuget.cache b/backend/Core/obj/project.nuget.cache index afb0c0e..3810bab 100644 --- a/backend/Core/obj/project.nuget.cache +++ b/backend/Core/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "+EiYqT3rYdVWvwXiZsHNFaB2D6uO2Xeh+V7LlHiNaWxmQ4mUUvwdIQ1hl8B+mPVwG35Z+1d3VfMpI88Xi5O3CQ==", + "dgSpecHash": "nUJYWQem8SFagSjBlwYcU+nbTi53nWZSxYTrPiHNTHcOWnBld4SMEechWWzFO+t4nThl0DYYE7H20aSoUlJA8A==", "success": true, - "projectFilePath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "expectedPackageFiles": [ "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.bson\\2.24.0\\mongodb.bson.2.24.0.nupkg.sha512", "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", diff --git a/backend/Core/obj/project.packagespec.json b/backend/Core/obj/project.packagespec.json index 3ee811d..e493125 100644 --- a/backend/Core/obj/project.packagespec.json +++ b/backend/Core/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj","projectName":"Core","projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"MongoDB.Bson":{"target":"Package","version":"[2.24.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj","projectName":"Core","projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"MongoDB.Bson":{"target":"Package","version":"[2.24.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/backend/Core/obj/rider.project.model.nuget.info b/backend/Core/obj/rider.project.model.nuget.info index 94e110d..d8a39cc 100644 --- a/backend/Core/obj/rider.project.model.nuget.info +++ b/backend/Core/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17127155176611080 \ No newline at end of file +17129080043830701 \ No newline at end of file diff --git a/backend/Core/obj/rider.project.restore.info b/backend/Core/obj/rider.project.restore.info index 94e110d..d8a39cc 100644 --- a/backend/Core/obj/rider.project.restore.info +++ b/backend/Core/obj/rider.project.restore.info @@ -1 +1 @@ -17127155176611080 \ No newline at end of file +17129080043830701 \ No newline at end of file diff --git a/backend/Infrastructure/bin/Debug/net8.0/Application.dll b/backend/Infrastructure/bin/Debug/net8.0/Application.dll index d9570ad..a759edb 100644 Binary files a/backend/Infrastructure/bin/Debug/net8.0/Application.dll and b/backend/Infrastructure/bin/Debug/net8.0/Application.dll differ diff --git a/backend/Infrastructure/bin/Debug/net8.0/Application.pdb b/backend/Infrastructure/bin/Debug/net8.0/Application.pdb index 0de85f2..104c75d 100644 Binary files a/backend/Infrastructure/bin/Debug/net8.0/Application.pdb and b/backend/Infrastructure/bin/Debug/net8.0/Application.pdb differ diff --git a/backend/Infrastructure/bin/Debug/net8.0/Core.dll b/backend/Infrastructure/bin/Debug/net8.0/Core.dll index 7e1e95e..0085c1f 100644 Binary files a/backend/Infrastructure/bin/Debug/net8.0/Core.dll and b/backend/Infrastructure/bin/Debug/net8.0/Core.dll differ diff --git a/backend/Infrastructure/bin/Debug/net8.0/Core.pdb b/backend/Infrastructure/bin/Debug/net8.0/Core.pdb index a45b614..0b3ee6d 100644 Binary files a/backend/Infrastructure/bin/Debug/net8.0/Core.pdb and b/backend/Infrastructure/bin/Debug/net8.0/Core.pdb differ diff --git a/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll b/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll index 2e699c0..f14fe3d 100644 Binary files a/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll and b/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll differ diff --git a/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb b/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb index c5f907f..526c652 100644 Binary files a/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb and b/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb differ diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs index b6c8d51..a04fa7b 100644 --- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs +++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs @@ -1,6 +1,7 @@ //------------------------------------------------------------------------------ // // 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. @@ -13,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Infrastructure")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+adba50e70b255cefbcbb5b6787d20cc26e663a9e")] [assembly: System.Reflection.AssemblyProductAttribute("Infrastructure")] [assembly: System.Reflection.AssemblyTitleAttribute("Infrastructure")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache index a506843..675eafb 100644 --- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache +++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache @@ -1 +1 @@ -37fc0f6880944d249644ad7a3819987a76f6dbbfab3d452f8e52bde10eed69b0 +d72b4d6c8556b721d691f9b20fc715ce00b8aafb794a2a22fa3ff8ff6d3dd834 diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig index cb9bbf6..3cf157a 100644 --- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Infrastructure -build_property.ProjectDir = C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\ +build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.assets.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.assets.cache index 2bb91db..6f98664 100644 Binary files a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.assets.cache and b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.assets.cache differ diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache index 7ebc103..14423f1 100644 Binary files a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache and b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache differ diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache index 2b85b58..2c0b44e 100644 --- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache +++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -23568e1f5cf7ff864d9d72d90d52471e5cf497ba00487d719b4bb26871b8c4c0 +36246167bc67f799ef7d06b38addbdbc2934572b797d99ee0e80ef15f6df67cd diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.FileListAbsolute.txt b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.FileListAbsolute.txt index 55fe08b..68204b5 100644 --- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.FileListAbsolute.txt +++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.FileListAbsolute.txt @@ -10,7 +10,6 @@ C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\ob C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.AssemblyInfo.cs C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.CoreCompileInputs.cache C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.sourcelink.json -C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastr.15EFFBFE.Up2Date C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.dll C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\refint\Infrastructure.dll C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.pdb @@ -56,3 +55,4 @@ C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\ne C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.pdb C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.genruntimeconfig.cache C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\ref\Infrastructure.dll +C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.CopyComplete diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll index 2e699c0..f14fe3d 100644 Binary files a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll and b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll differ diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache index 8c8e8ed..a419895 100644 --- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache +++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache @@ -1 +1 @@ -fbc8ec4d14aaed697f39357c851a2a038744b193f654a11d67a6cb1bad5c36c2 +8669647c4f952cb9f9825a534fa4bb1335040a9cec57b5e81118a81800eca4aa diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb index c5f907f..526c652 100644 Binary files a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb and b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb differ diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json new file mode 100644 index 0000000..c375bae --- /dev/null +++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/adba50e70b255cefbcbb5b6787d20cc26e663a9e/*"}} \ No newline at end of file diff --git a/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll b/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll index 0dd5df7..8158a59 100644 Binary files a/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll and b/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll differ diff --git a/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll b/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll index 0dd5df7..8158a59 100644 Binary files a/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll and b/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll differ diff --git a/backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json b/backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json index a162e35..9b29fd6 100644 --- a/backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json +++ b/backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj": {} + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": {} }, "projects": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "projectName": "Application", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -26,8 +26,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj" } } } @@ -71,14 +71,14 @@ } } }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "projectName": "Core", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -130,14 +130,14 @@ } } }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj": { + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj", "projectName": "Infrastructure", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -152,11 +152,11 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj" }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj" } } } diff --git a/backend/Infrastructure/obj/project.assets.json b/backend/Infrastructure/obj/project.assets.json index c7b52e1..c6b363b 100644 --- a/backend/Infrastructure/obj/project.assets.json +++ b/backend/Infrastructure/obj/project.assets.json @@ -3659,11 +3659,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj", + "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj", "projectName": "Infrastructure", - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj", + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj", "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\obj\\", + "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config" @@ -3678,11 +3678,11 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj" }, - "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj" + "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj" } } } diff --git a/backend/Infrastructure/obj/project.nuget.cache b/backend/Infrastructure/obj/project.nuget.cache index 8dcf462..bc245e8 100644 --- a/backend/Infrastructure/obj/project.nuget.cache +++ b/backend/Infrastructure/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "5cT5WRkYtmxXk3fpr5xOVxGGlXF2nVdOjptC6Tc7YDgcQih758y26gBX3QhHasX7HLIcIYcW6ijz5KgoEm8uKQ==", + "dgSpecHash": "pF3XqxVA87LZ2eqKgkY0WSdNfMkjY7iYYiKVDDpMtBbgzsStmL5AV+YB1rj394lXBXpedmSvoVfqxSY86Dd62g==", "success": true, - "projectFilePath": "C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj", + "projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj", "expectedPackageFiles": [ "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.core\\3.7.100.14\\awssdk.core.3.7.100.14.nupkg.sha512", "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\awssdk.securitytoken.3.7.100.14.nupkg.sha512", diff --git a/backend/Infrastructure/obj/project.packagespec.json b/backend/Infrastructure/obj/project.packagespec.json index 4b7979e..2184a76 100644 --- a/backend/Infrastructure/obj/project.packagespec.json +++ b/backend/Infrastructure/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj","projectName":"Infrastructure","projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\Infrastructure.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Infrastructure\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Application\\Application.csproj"},"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Desktop\\backend\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.3, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.3, )"},"Microsoft.EntityFrameworkCore.Relational":{"target":"Package","version":"[8.0.3, )"},"Microsoft.Extensions.Configuration":{"target":"Package","version":"[8.0.0, )"},"Microsoft.Extensions.Configuration.Json":{"target":"Package","version":"[8.0.0, )"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"target":"Package","version":"[8.0.0, )"},"Microsoft.IdentityModel.Tokens":{"target":"Package","version":"[7.5.1, )"},"MongoDB.Driver":{"target":"Package","version":"[2.24.0, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.2, )"},"System.IdentityModel.Tokens.Jwt":{"target":"Package","version":"[7.5.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj","projectName":"Infrastructure","projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj"},"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj":{"projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.3, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.3, )"},"Microsoft.EntityFrameworkCore.Relational":{"target":"Package","version":"[8.0.3, )"},"Microsoft.Extensions.Configuration":{"target":"Package","version":"[8.0.0, )"},"Microsoft.Extensions.Configuration.Json":{"target":"Package","version":"[8.0.0, )"},"Microsoft.Extensions.Options.ConfigurationExtensions":{"target":"Package","version":"[8.0.0, )"},"Microsoft.IdentityModel.Tokens":{"target":"Package","version":"[7.5.1, )"},"MongoDB.Driver":{"target":"Package","version":"[2.24.0, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.2, )"},"System.IdentityModel.Tokens.Jwt":{"target":"Package","version":"[7.5.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/backend/Infrastructure/obj/rider.project.model.nuget.info b/backend/Infrastructure/obj/rider.project.model.nuget.info index 94e110d..af5eba3 100644 --- a/backend/Infrastructure/obj/rider.project.model.nuget.info +++ b/backend/Infrastructure/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17127155176611080 \ No newline at end of file +17129080043794121 \ No newline at end of file diff --git a/backend/Infrastructure/obj/rider.project.restore.info b/backend/Infrastructure/obj/rider.project.restore.info index 94e110d..af5eba3 100644 --- a/backend/Infrastructure/obj/rider.project.restore.info +++ b/backend/Infrastructure/obj/rider.project.restore.info @@ -1 +1 @@ -17127155176611080 \ No newline at end of file +17129080043794121 \ No newline at end of file