|
10 | 10 | global using System.Threading;
|
11 | 11 | global using System.Threading.Tasks;
|
12 | 12 | global using EFCoreGeneric.Infrastructure.Interfaces;
|
| 13 | +global using MailKit.Net.Smtp; |
| 14 | +global using MailKit.Security; |
13 | 15 | global using Microsoft.AspNetCore.Builder;
|
14 | 16 | global using Microsoft.AspNetCore.Diagnostics.HealthChecks;
|
15 | 17 | global using Microsoft.AspNetCore.Http;
|
| 18 | +global using Microsoft.AspNetCore.Identity.UI.Services; |
16 | 19 | global using Microsoft.AspNetCore.Routing;
|
17 | 20 | global using Microsoft.EntityFrameworkCore;
|
| 21 | +global using Microsoft.Extensions.Configuration; |
18 | 22 | global using Microsoft.Extensions.DependencyInjection;
|
19 | 23 | global using Microsoft.Extensions.Diagnostics.HealthChecks;
|
20 | 24 | global using Microsoft.Extensions.Hosting;
|
21 | 25 | global using Microsoft.Extensions.Logging;
|
| 26 | +global using Microsoft.Extensions.Options; |
22 | 27 | global using Microsoft.OpenApi.Any;
|
23 | 28 | global using Microsoft.OpenApi.Models;
|
| 29 | +global using MimeKit; |
24 | 30 | global using MySqlConnector;
|
25 | 31 | global using NET6CustomLibrary.DateTime.Converters;
|
26 | 32 | global using NET6CustomLibrary.DateTime.TypeConverters;
|
27 | 33 | global using NET6CustomLibrary.EFCore.Core;
|
28 | 34 | global using NET6CustomLibrary.EFCore.Core.Interfaces;
|
29 | 35 | global using NET6CustomLibrary.EFCore.Infrastructure.Interfaces;
|
30 | 36 | global using NET6CustomLibrary.EFCore.Infrastructure.Repository;
|
| 37 | +global using NET6CustomLibrary.MailKit.Options; |
| 38 | +global using NET6CustomLibrary.MailKit.Services; |
31 | 39 | global using NET6CustomLibrary.RabbitMQ.Abstractions;
|
32 | 40 | global using NET6CustomLibrary.Serilog.Services;
|
33 | 41 | global using RabbitMQ.Client;
|
|
0 commit comments