refactor: Удалил неиспользуемые пространства имен из контроллеров и сервисов

This commit is contained in:
2026-03-26 02:41:22 +03:00
parent 9fd446fe04
commit b85fdc777a
7 changed files with 0 additions and 7 deletions

View File

@@ -3,7 +3,6 @@ using System.Text.Json;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.RateLimiting; using Microsoft.AspNetCore.RateLimiting;
using ModeusSchedule.Abstractions; using ModeusSchedule.Abstractions;
using ModeusSchedule.Abstractions.DTO;
using ModeusSchedule.Abstractions.DTO.Requests; using ModeusSchedule.Abstractions.DTO.Requests;
using SfeduSchedule.Services; using SfeduSchedule.Services;

View File

@@ -3,7 +3,6 @@ using System.Text;
using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.RateLimiting; using Microsoft.AspNetCore.RateLimiting;
using ModeusSchedule.Abstractions.DTO;
using ModeusSchedule.Abstractions.DTO.Requests; using ModeusSchedule.Abstractions.DTO.Requests;
using SfeduSchedule.DTO.Responses; using SfeduSchedule.DTO.Responses;
using SfeduSchedule.Services; using SfeduSchedule.Services;

View File

@@ -1,4 +1,3 @@
using ModeusSchedule.Abstractions;
using Quartz; using Quartz;
using SfeduSchedule.Services; using SfeduSchedule.Services;

View File

@@ -8,7 +8,6 @@ using Microsoft.AspNetCore.HttpOverrides;
using Microsoft.AspNetCore.Mvc.ApplicationParts; using Microsoft.AspNetCore.Mvc.ApplicationParts;
using Microsoft.Identity.Web; using Microsoft.Identity.Web;
using Microsoft.OpenApi.Models; using Microsoft.OpenApi.Models;
using ModeusSchedule.Abstractions;
using Prometheus; using Prometheus;
using Quartz; using Quartz;
using Quartz.Listener; using Quartz.Listener;

View File

@@ -1,5 +1,4 @@
using Quartz; using Quartz;
using SfeduSchedule.Jobs;
using System.Text.Json; using System.Text.Json;
namespace SfeduSchedule.Services; namespace SfeduSchedule.Services;

View File

@@ -1,6 +1,5 @@
using System.Diagnostics; using System.Diagnostics;
using System.Text.Json; using System.Text.Json;
using System.Net.Http.Json;
using Microsoft.Net.Http.Headers; using Microsoft.Net.Http.Headers;
using ModeusSchedule.Abstractions; using ModeusSchedule.Abstractions;
using ModeusSchedule.Abstractions.DTO; using ModeusSchedule.Abstractions.DTO;

View File

@@ -8,7 +8,6 @@ using ModeusSchedule.Abstractions;
using ModeusSchedule.Abstractions.DTO; using ModeusSchedule.Abstractions.DTO;
using ModeusSchedule.Abstractions.DTO.Requests; using ModeusSchedule.Abstractions.DTO.Requests;
using SfeduSchedule.DTO.Requests; using SfeduSchedule.DTO.Requests;
using SfeduSchedule.DTO.Responses;
using SfeduSchedule.Logging; using SfeduSchedule.Logging;
namespace SfeduSchedule.Services; namespace SfeduSchedule.Services;