moved service to separate project (Kontur developer said "WTF WHY ARE U STORING SERVICES IN INFRASTRUCTURE SLAVA D")
This commit is contained in:
parent
147fb683f7
commit
41ff1555f8
11 changed files with 33 additions and 9 deletions
|
|
@ -1,7 +1,7 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using SurveyBackend.DTOs;
|
||||
using SurveyBackend.Infrastructure.Services;
|
||||
using SurveyBackend.Mappers.UserDTOs;
|
||||
using SurveyBackend.Services.Services;
|
||||
|
||||
namespace SurveyBackend.Controllers;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
using SurveyBackend.Core.Models;
|
||||
using SurveyBackend.Core.Services;
|
||||
using SurveyBackend.DTOs;
|
||||
using SurveyBackend.Infrastructure.Services;
|
||||
|
||||
namespace SurveyBackend.Mappers.UserDTOs;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,8 @@ using SurveyBackend.Core.Services;
|
|||
using SurveyBackend.Infrastructure;
|
||||
using SurveyBackend.Infrastructure.Data;
|
||||
using SurveyBackend.Infrastructure.Repositories;
|
||||
using SurveyBackend.Infrastructure.Services;
|
||||
using SurveyBackend.Services;
|
||||
using SurveyBackend.Services.Services;
|
||||
using SurveyLib.Core.Repositories;
|
||||
using SurveyLib.Core.Services;
|
||||
using SurveyLib.Infrastructure.EFCore.Data;
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<ItemGroup>
|
||||
<ProjectReference Include="..\SurveyBackend.Core\SurveyBackend.Core.csproj" />
|
||||
<ProjectReference Include="..\SurveyBackend.Infrastructure\SurveyBackend.Infrastructure.csproj" />
|
||||
<ProjectReference Include="..\SurveyBackend.Services\SurveyBackend.Services.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue