-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsings.cs
More file actions
26 lines (20 loc) · 870 Bytes
/
Usings.cs
File metadata and controls
26 lines (20 loc) · 870 Bytes
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
global using System.Diagnostics.CodeAnalysis;
global using System.Text.Json;
global using System.Web;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.OpenApi.Models;
global using Comanda.Orders.WebApi.Extensions;
global using Comanda.Orders.WebApi.Constants;
global using Comanda.Orders.WebApi.Middlewares;
global using Comanda.Orders.Domain.Errors;
global using Comanda.Orders.Application.Payloads.Order;
global using Comanda.Orders.Application.Payloads;
global using Comanda.Orders.Infrastructure.IoC.Extensions;
global using Comanda.Orders.CrossCutting.Configurations;
global using HttpsRichardy.Dispatcher.Contracts;
global using HttpsRichardy.Federation.Sdk.Extensions;
global using Scalar.AspNetCore;
global using Serilog;
global using Serilog.Context;
global using FluentValidation.AspNetCore;