-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlobalUsings.cs
50 lines (50 loc) · 2.2 KB
/
GlobalUsings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
global using EasyITCenter.ControllersExtensions;
global using EasyITCenter.DBModel;
global using EasyITCenter.Managers;
global using EasyITCenter.Services;
global using EasyITCenter.ServerCoreConfiguration;
global using EasyITCenter.ServerCoreDBSettings;
global using EasyITCenter.ServerCoreServers;
global using EasyITCenter.ServerCoreStructure;
global using EasyITCenter.WebClasses;
global using EasyITCenter.WebModel;
global using EasyITCenter.WebDBModel;
global using EasyITCenter.WebControllers;
global using EasyITCenter.ServerCorePages;
global using HealthChecks.UI.Client;
global using Microsoft.AspNetCore.Authentication.JwtBearer;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Diagnostics.HealthChecks;
global using Microsoft.AspNetCore.HttpLogging;
global using Microsoft.AspNetCore.HttpOverrides;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.AspNetCore.Server.Kestrel.Core;
global using Microsoft.AspNetCore.Server.Kestrel.Https;
global using Microsoft.Data.SqlClient;
global using Microsoft.EntityFrameworkCore;
global using Microsoft.EntityFrameworkCore.ChangeTracking;
global using Microsoft.EntityFrameworkCore.Infrastructure;
global using Microsoft.EntityFrameworkCore.Storage;
global using Microsoft.Extensions.Diagnostics.HealthChecks;
global using Microsoft.Extensions.Logging.Console;
global using Microsoft.Extensions.Logging.Debug;
global using Microsoft.IdentityModel.Tokens;
global using Microsoft.OpenApi.Models;
global using Swashbuckle.AspNetCore.SwaggerGen;
global using Swashbuckle.AspNetCore.SwaggerUI;
global using System.ComponentModel.DataAnnotations;
global using System.ComponentModel.DataAnnotations.Schema;
global using System.Diagnostics;
global using System.IdentityModel.Tokens.Jwt;
global using System.Net;
global using System.IO;
global using System.Net.WebSockets;
global using System.Reflection;
global using System.Security.Claims;
global using System.Security.Cryptography;
global using System.Security.Cryptography.X509Certificates;
global using System.Text;
global using System.Text.Json;
global using System.Text.Json.Serialization;
global using System.Transactions;
global using IndexAttribute = Microsoft.EntityFrameworkCore.IndexAttribute;