remove all unused imports

This commit is contained in:
Вячеслав 2025-05-31 01:34:42 +05:00
parent 7ccf8cb018
commit 9a7c74e307
8 changed files with 0 additions and 19 deletions

View file

@ -2,7 +2,6 @@ using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using SurveyBackend.Core.Contexts; using SurveyBackend.Core.Contexts;
using SurveyBackend.Core.Services; using SurveyBackend.Core.Services;
using SurveyBackend.DTOs;
using SurveyBackend.DTOs.User; using SurveyBackend.DTOs.User;
using SurveyBackend.Mappers; using SurveyBackend.Mappers;
using IAuthorizationService = SurveyBackend.Core.Services.IAuthorizationService; using IAuthorizationService = SurveyBackend.Core.Services.IAuthorizationService;

View file

@ -1,11 +1,8 @@
using System.Security.Claims;
using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using SurveyBackend.Core.Contexts; using SurveyBackend.Core.Contexts;
using SurveyBackend.DTOs.Survey; using SurveyBackend.DTOs.Survey;
using SurveyBackend.Mappers; using SurveyBackend.Mappers;
using SurveyBackend.Services.Exceptions;
using SurveyLib.Core.Models;
using SurveyLib.Core.Services; using SurveyLib.Core.Services;
namespace SurveyBackend.Controllers; namespace SurveyBackend.Controllers;

View file

@ -1,5 +1,3 @@
using SurveyBackend.DTOs.Answer;
namespace SurveyBackend.DTOs.Completion; namespace SurveyBackend.DTOs.Completion;
public class CompletionOutputDto public class CompletionOutputDto

View file

@ -1,5 +1,4 @@
using SurveyBackend.Core.Models; using SurveyBackend.Core.Models;
using SurveyBackend.DTOs;
using SurveyBackend.DTOs.User; using SurveyBackend.DTOs.User;
namespace SurveyBackend.Mappers; namespace SurveyBackend.Mappers;

View file

@ -5,21 +5,13 @@ using Microsoft.IdentityModel.Tokens;
using Microsoft.OpenApi.Models; using Microsoft.OpenApi.Models;
using SurveyBackend.Contexts; using SurveyBackend.Contexts;
using SurveyBackend.Core.Contexts; using SurveyBackend.Core.Contexts;
using SurveyBackend.Core.Repositories;
using SurveyBackend.Core.Services;
using SurveyBackend.Filters; using SurveyBackend.Filters;
using SurveyBackend.Infrastructure; using SurveyBackend.Infrastructure;
using SurveyBackend.Infrastructure.Data; using SurveyBackend.Infrastructure.Data;
using SurveyBackend.Infrastructure.Repositories;
using SurveyBackend.Middlewares; using SurveyBackend.Middlewares;
using SurveyBackend.Services; using SurveyBackend.Services;
using SurveyBackend.Services.Helpers;
using SurveyBackend.Services.Services;
using SurveyLib.Core.Repositories;
using SurveyLib.Core.Services;
using SurveyLib.Infrastructure.EFCore; using SurveyLib.Infrastructure.EFCore;
using SurveyLib.Infrastructure.EFCore.Data; using SurveyLib.Infrastructure.EFCore.Data;
using SurveyLib.Infrastructure.EFCore.Repositories;
namespace SurveyBackend; namespace SurveyBackend;

View file

@ -1,5 +1,3 @@
using Microsoft.AspNetCore.Identity;
namespace SurveyBackend.Core.Models; namespace SurveyBackend.Core.Models;
public class User public class User

View file

@ -1,4 +1,3 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using SurveyBackend.Core.Repositories; using SurveyBackend.Core.Repositories;
using SurveyBackend.Infrastructure.Repositories; using SurveyBackend.Infrastructure.Repositories;

View file

@ -1,5 +1,4 @@
using SurveyBackend.Core.Contexts; using SurveyBackend.Core.Contexts;
using SurveyBackend.Core.Repositories;
using SurveyBackend.Services.Exceptions; using SurveyBackend.Services.Exceptions;
using SurveyLib.Core.Models; using SurveyLib.Core.Models;
using SurveyLib.Core.Repositories; using SurveyLib.Core.Repositories;