Skip to content

Commit 0e9ce08

Browse files
committed
chore: removed unused namespace
1 parent e6ec75c commit 0e9ce08

File tree

80 files changed

+4
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+4
-209
lines changed

src/CleanArch.Api/Account/AccountController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using CleanArch.Application.Contracts.Persistence;
22
using CleanArch.Domain.Services.Authentication;
33
using Microsoft.AspNetCore.Mvc;
4-
using System.Threading.Tasks;
54

65
namespace CleanArch.Api.Account;
76

src/CleanArch.Api/Category/v1/CategoryController.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
using CleanArch.Application.Features.Categories.Queries.GetCategoriesList;
44
using CleanArch.Application.Features.Categories.Queries.GetCategoriesListWithEvents;
55
using Microsoft.AspNetCore.Authorization;
6-
using Microsoft.AspNetCore.Http;
76
using Microsoft.AspNetCore.Mvc;
8-
using System.Collections.Generic;
9-
using System.Threading.Tasks;
107

118
namespace CleanArch.Api.Category.v1;
129

src/CleanArch.Api/Controllers/BaseController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using MediatR;
22
using Microsoft.AspNetCore.Authorization;
33
using Microsoft.AspNetCore.Mvc;
4-
using Microsoft.Extensions.DependencyInjection;
54

65
namespace CleanArch.Api.Controllers;
76

src/CleanArch.Api/Event/v1/EventsController.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
using CleanArch.Application.Features.Events.Queries.GetEventsList;
88
using CleanArch.CrossCuttingConcerns.Utility;
99
using Microsoft.AspNetCore.Authorization;
10-
using Microsoft.AspNetCore.Http;
1110
using Microsoft.AspNetCore.Mvc;
12-
using System;
13-
using System.Threading.Tasks;
1411

1512
namespace CleanArch.Api.Event.v1;
1613

src/CleanArch.Api/Program.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using CleanArch.Persistence.Context;
2-
using Microsoft.AspNetCore.Hosting;
32
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
43
using Microsoft.EntityFrameworkCore;
5-
using Microsoft.Extensions.DependencyInjection;
6-
using Microsoft.Extensions.Hosting;
74

85
namespace CleanArch.Api;
96

src/CleanArch.Api/Startup.cs

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,21 @@
11
using CleanArch.Application;
22
using CleanArch.Application.Middleware;
3+
using CleanArch.CrossCuttingConcerns.Identity;
4+
using CleanArch.CrossCuttingConcerns.OS;
35
using CleanArch.CrossCuttingConcerns.Utility;
46
using CleanArch.Domain.Services.Configuration;
57
using CleanArch.Infrastructure;
8+
using CleanArch.Infrastructure.Identity;
9+
using CleanArch.Infrastructure.OS;
610
using CleanArch.Persistence;
711
using CleanArch.Persistence.Context;
812
using HealthChecks.UI.Client;
9-
using Microsoft.AspNetCore.Builder;
1013
using Microsoft.AspNetCore.Diagnostics.HealthChecks;
11-
using Microsoft.AspNetCore.Hosting;
12-
using Microsoft.AspNetCore.Http;
1314
using Microsoft.AspNetCore.Mvc;
14-
using Microsoft.Extensions.Configuration;
15-
using Microsoft.Extensions.DependencyInjection;
1615
using Microsoft.Extensions.Diagnostics.HealthChecks;
17-
using Microsoft.Extensions.Hosting;
18-
using Microsoft.Extensions.Logging;
1916
using Microsoft.FeatureManagement;
2017
using Microsoft.OpenApi.Models;
2118
using Serilog;
22-
using System;
23-
using System.Collections.Generic;
24-
using CleanArch.CrossCuttingConcerns.Identity;
25-
using CleanArch.CrossCuttingConcerns.OS;
26-
using CleanArch.Infrastructure.Identity;
27-
using CleanArch.Infrastructure.OS;
2819

2920
namespace CleanArch.Api;
3021

src/CleanArch.App/Program.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
2-
using Microsoft.Extensions.DependencyInjection;
3-
using System;
4-
using System.Net.Http;
5-
using System.Threading.Tasks;
62

73
namespace CleanArch.App;
84

src/CleanArch.Application/Contracts/Infrastructure/ICsvExporter.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using CleanArch.Application.Features.Events.Queries.GetEventsExport;
2-
using System.Collections.Generic;
32

43
namespace CleanArch.Application.Contracts.Infrastructure;
54

src/CleanArch.Application/Contracts/Infrastructure/IEmailService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using CleanArch.Domain.Services.Mail;
2-
using System.Threading.Tasks;
32

43
namespace CleanArch.Application.Contracts.Infrastructure;
54

src/CleanArch.Application/Contracts/Persistence/IAuthenticationService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using CleanArch.Domain.Common;
22
using CleanArch.Domain.Services.Authentication;
3-
using System.Threading.Tasks;
43

54
namespace CleanArch.Application.Contracts.Persistence;
65

0 commit comments

Comments
 (0)