3
3
global using System . ComponentModel ;
4
4
global using System . Globalization ;
5
5
global using System . Linq ;
6
+ global using System . Net . Mime ;
6
7
global using System . Text ;
7
8
global using System . Text . Json ;
8
9
global using System . Text . Json . Serialization ;
9
10
global using System . Threading ;
10
11
global using System . Threading . Tasks ;
11
12
global using EFCoreGeneric . Infrastructure . Interfaces ;
13
+ global using Microsoft . AspNetCore . Builder ;
14
+ global using Microsoft . AspNetCore . Diagnostics . HealthChecks ;
15
+ global using Microsoft . AspNetCore . Http ;
16
+ global using Microsoft . AspNetCore . Routing ;
12
17
global using Microsoft . EntityFrameworkCore ;
13
18
global using Microsoft . Extensions . DependencyInjection ;
19
+ global using Microsoft . Extensions . Diagnostics . HealthChecks ;
14
20
global using Microsoft . Extensions . Hosting ;
15
21
global using Microsoft . Extensions . Logging ;
22
+ global using Microsoft . OpenApi . Any ;
23
+ global using Microsoft . OpenApi . Models ;
24
+ global using MySqlConnector ;
25
+ global using NET6CustomLibrary . DateTime . Converters ;
26
+ global using NET6CustomLibrary . DateTime . TypeConverters ;
16
27
global using NET6CustomLibrary . EFCore . Core ;
17
28
global using NET6CustomLibrary . EFCore . Core . Interfaces ;
18
29
global using NET6CustomLibrary . EFCore . Infrastructure . Interfaces ;
30
+ global using NET6CustomLibrary . EFCore . Infrastructure . Repository ;
19
31
global using NET6CustomLibrary . RabbitMQ . Abstractions ;
32
+ global using NET6CustomLibrary . Serilog . Services ;
20
33
global using RabbitMQ . Client ;
21
34
global using RabbitMQ . Client . Events ;
35
+ global using Serilog ;
36
+ global using Swashbuckle . AspNetCore . SwaggerGen ;
0 commit comments