diff --git a/.idea/.idea.DotNetAngular/.idea/inspectionProfiles/Project_Default.xml b/.idea/.idea.DotNetAngular/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..18eb884
--- /dev/null
+++ b/.idea/.idea.DotNetAngular/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/.idea.DotNetAngular/.idea/workspace.xml b/.idea/.idea.DotNetAngular/.idea/workspace.xml
index 1148656..3b90812 100644
--- a/.idea/.idea.DotNetAngular/.idea/workspace.xml
+++ b/.idea/.idea.DotNetAngular/.idea/workspace.xml
@@ -5,83 +5,25 @@
src/API/API.csproj
src/API/API.csproj
src/API/API.csproj
+ tests/Application.FunctionalTest/Application.FunctionalTest.csproj
+ tests/Application.UnitTest/Application.UnitTest.csproj
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -120,32 +62,74 @@
- {
+ "keyToString": {
+ ".NET Launch Settings Profile.API: Angular_dev.executor": "Run",
+ "RunOnceActivity.MCP Project settings loaded": "true",
+ "RunOnceActivity.ShowReadmeOnStart": "true",
+ "RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
+ "RunOnceActivity.git.unshallow": "true",
+ "RunOnceActivity.typescript.service.memoryLimit.init": "true",
+ "com.intellij.ml.llm.matterhorn.ej.ui.settings.DefaultModelSelectionForGA.v1": "true",
+ "git-widget-placeholder": "feature/dotnet",
+ "junie.onboarding.icon.badge.shown": "true",
+ "node.js.detected.package.eslint": "true",
+ "node.js.detected.package.tslint": "true",
+ "node.js.selected.package.eslint": "(autodetect)",
+ "node.js.selected.package.tslint": "(autodetect)",
+ "nodejs_package_manager_path": "npm",
+ "settings.editor.selected.configurable": "vcs.Git",
+ "to.speed.mode.migration.done": "true",
+ "ts.external.directory.path": "/home/natlinux/RiderProjects/DotNetAngular/src/ClientApp/node_modules/typescript/lib",
+ "vue.rearranger.settings.migration": "true"
}
-}]]>
+}
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -225,7 +209,8 @@
-
+
+
@@ -243,7 +228,15 @@
1770057870215
-
+
+
+ 1770306489835
+
+
+
+ 1770306489835
+
+
@@ -266,7 +259,8 @@
-
+
+
diff --git a/src/API/API.csproj b/src/API/API.csproj
index 31a6eae..ac32cbc 100644
--- a/src/API/API.csproj
+++ b/src/API/API.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
..\ClientApp\
@@ -10,10 +10,10 @@
-
-
-
-
+
+
+
+
diff --git a/src/API/Extension/ServiceCollectionExtensions.cs b/src/API/Extension/ServiceCollectionExtensions.cs
index 9ff3d0e..faea41e 100644
--- a/src/API/Extension/ServiceCollectionExtensions.cs
+++ b/src/API/Extension/ServiceCollectionExtensions.cs
@@ -1,4 +1,4 @@
-using Microsoft.OpenApi.Models;
+using Microsoft.OpenApi;
namespace API.Extension;
diff --git a/src/API/Program.cs b/src/API/Program.cs
index e00168f..46558f2 100644
--- a/src/API/Program.cs
+++ b/src/API/Program.cs
@@ -1,5 +1,5 @@
using API.Extension;
-using Microsoft.OpenApi.Models;
+using Microsoft.OpenApi;
using Swashbuckle.AspNetCore.SwaggerGen;
var builder = WebApplication.CreateBuilder(args);
diff --git a/src/Application/Application.csproj b/src/Application/Application.csproj
index 17b910f..237d661 100644
--- a/src/Application/Application.csproj
+++ b/src/Application/Application.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
diff --git a/src/ClientApp/src/app/infrastructure/services/user.service.ts b/src/ClientApp/src/app/infrastructure/services/user.service.ts
index 5f6836f..1a32742 100644
--- a/src/ClientApp/src/app/infrastructure/services/user.service.ts
+++ b/src/ClientApp/src/app/infrastructure/services/user.service.ts
@@ -3,8 +3,6 @@ import {HttpClient} from "@angular/common/http";
import {environment} from "../../../environments/environment.development";
import {IUserService} from "../../presentation/interfaces/iuser-service";
import { Observable } from "rxjs";
-import {CookieConsentRequest} from "../../presentation/models/cookie-consent-request";
-
@Injectable({
providedIn: 'root'
})
@@ -21,11 +19,4 @@ export class UserService implements IUserService {
};
return this.httpClient.get(this.baseUrl + 'user', {params});
}
-
- assignCookieConsent(CookieConsentRequest: CookieConsentRequest): Observable {
- return this.httpClient.post(this.baseUrl + 'user/assign-cookie', CookieConsentRequest,{});
- }
- revokeCookieConsent(): Observable{
- return this.httpClient.delete(this.baseUrl + 'user/revoke-cookie', {});
- }
}
diff --git a/src/Domain/Domain.csproj b/src/Domain/Domain.csproj
index 17b910f..237d661 100644
--- a/src/Domain/Domain.csproj
+++ b/src/Domain/Domain.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
diff --git a/src/Infrastructure/Infrastructure.csproj b/src/Infrastructure/Infrastructure.csproj
index 17b910f..237d661 100644
--- a/src/Infrastructure/Infrastructure.csproj
+++ b/src/Infrastructure/Infrastructure.csproj
@@ -1,7 +1,7 @@
- net9.0
+ net10.0
enable
enable
diff --git a/tests/Application.FunctionalTest/Application.FunctionalTest.csproj b/tests/Application.FunctionalTest/Application.FunctionalTest.csproj
index 95d873d..16fab19 100644
--- a/tests/Application.FunctionalTest/Application.FunctionalTest.csproj
+++ b/tests/Application.FunctionalTest/Application.FunctionalTest.csproj
@@ -1,17 +1,23 @@
- net9.0
+ net10.0
enable
enable
false
-
-
-
-
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
diff --git a/tests/Application.UnitTest/Application.UnitTest.csproj b/tests/Application.UnitTest/Application.UnitTest.csproj
index 95d873d..16fab19 100644
--- a/tests/Application.UnitTest/Application.UnitTest.csproj
+++ b/tests/Application.UnitTest/Application.UnitTest.csproj
@@ -1,17 +1,23 @@
- net9.0
+ net10.0
enable
enable
false
-
-
-
-
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+