Skip to content

Commit c9f617a

Browse files
committed
Auth Service / DB: .NET 8
1 parent 9ba5a16 commit c9f617a

File tree

10 files changed

+6
-10
lines changed

10 files changed

+6
-10
lines changed

HwProj.AuthService/HwProj.AuthService.API/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ COPY ["HwProj.AuthService/HwProj.AuthService.API/", "HwProj.AuthService/HwProj.A
77
COPY ["HwProj.Common/HwProj.Common.Net8/", "HwProj.Common/HwProj.Common.Net8/"]
88
COPY ["HwProj.Common/HwProj.Models/", "HwProj.Common/HwProj.Models/"]
99
COPY ["HwProj.Common/HwProj.Repositories/", "HwProj.Common/HwProj.Repositories/"]
10+
COPY ["HwProj.Common/HwProj.Repositories.Net8/", "HwProj.Common/HwProj.Repositories.Net8/"]
1011
COPY ["HwProj.EventBus/HwProj.EventBus.Client/", "HwProj.EventBus/HwProj.EventBus.Client/"]
1112
COPY ["HwProj.NotificationsService/HwProj.NotificationService.Events/", "HwProj.NotificationsService/HwProj.NotificationService.Events/"]
1213

HwProj.AuthService/HwProj.AuthService.API/HwProj.AuthService.API.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<ItemGroup>
2121
<ProjectReference Include="..\..\HwProj.Common\HwProj.Common.Net8\HwProj.Common.Net8.csproj" />
2222
<ProjectReference Include="..\..\HwProj.Common\HwProj.Models\HwProj.Models.csproj" />
23+
<ProjectReference Include="..\..\HwProj.Common\HwProj.Repositories.Net8\HwProj.Repositories.Net8.csproj" />
2324
<ProjectReference Include="..\..\HwProj.EventBus\HwProj.EventBus.Client\HwProj.EventBus.Client.csproj" />
2425
<ProjectReference Include="..\..\HwProj.NotificationsService\HwProj.NotificationService.Events\HwProj.NotificationService.Events.csproj" />
2526
</ItemGroup>

HwProj.AuthService/HwProj.AuthService.API/Models/ExpertData.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System.ComponentModel.DataAnnotations;
22
using System.ComponentModel.DataAnnotations.Schema;
3-
using HwProj.Models.AuthService.ViewModels;
4-
using HwProj.Repositories;
3+
using HwProj.Repositories.Net8;
54

65
namespace HwProj.AuthService.API.Models
76
{

HwProj.AuthService/HwProj.AuthService.API/Models/IdentityContext.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using HwProj.Models.AuthService.ViewModels;
2-
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
1+
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
32
using Microsoft.EntityFrameworkCore;
43

54
namespace HwProj.AuthService.API.Models

HwProj.AuthService/HwProj.AuthService.API/Repositories/ExpertsRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Linq;
22
using System.Threading.Tasks;
33
using HwProj.AuthService.API.Models;
4-
using HwProj.Repositories;
4+
using HwProj.Repositories.Net8;
55
using Microsoft.EntityFrameworkCore;
66

77
namespace HwProj.AuthService.API.Repositories

HwProj.AuthService/HwProj.AuthService.API/Repositories/IExpertsRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Threading.Tasks;
22
using HwProj.AuthService.API.Models;
3-
using HwProj.Repositories;
3+
using HwProj.Repositories.Net8;
44

55
namespace HwProj.AuthService.API.Repositories
66
{

HwProj.AuthService/HwProj.AuthService.API/Services/AuthTokenService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
using HwProj.Models.Roles;
1111
using Microsoft.Extensions.Configuration;
1212
using HwProj.Models.AuthService.DTO;
13-
using HwProj.Models.AuthService.ViewModels;
1413
using HwProj.Models.Result;
1514
using User = HwProj.AuthService.API.Models.User;
1615

HwProj.AuthService/HwProj.AuthService.API/Services/IAuthTokenService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using HwProj.Models.AuthService.DTO;
2-
using HwProj.Models.AuthService.ViewModels;
32
using System.Threading.Tasks;
43
using HwProj.Models.Result;
54
using User = HwProj.AuthService.API.Models.User;

HwProj.AuthService/HwProj.AuthService.API/Services/IUserManager.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.Collections.Generic;
22
using System.Threading.Tasks;
3-
using HwProj.Models.AuthService.ViewModels;
43
using Microsoft.AspNetCore.Identity;
54
using User = HwProj.AuthService.API.Models.User;
65

HwProj.AuthService/HwProj.AuthService.API/Services/ProxyUserManager.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.Collections.Generic;
22
using System.Threading.Tasks;
3-
using HwProj.Models.AuthService.ViewModels;
43
using Microsoft.AspNetCore.Identity;
54
using User = HwProj.AuthService.API.Models.User;
65

0 commit comments

Comments
 (0)