38 lines
1.7 KiB
C#
38 lines
1.7 KiB
C#
global using System;
|
|
global using System.Collections.Generic;
|
|
global using System.ComponentModel.DataAnnotations;
|
|
global using System.Linq;
|
|
global using System.Net;
|
|
global using System.Security.Claims;
|
|
global using System.Text.Json;
|
|
global using System.Threading.Tasks;
|
|
global using Autofac;
|
|
global using Basket.API.Infrastructure.ActionResults;
|
|
global using Basket.API.Infrastructure.Exceptions;
|
|
global using Basket.API.Infrastructure.Filters;
|
|
global using Basket.API.IntegrationEvents.EventHandling;
|
|
global using Basket.API.IntegrationEvents.Events;
|
|
global using Basket.API.Model;
|
|
global using Grpc.Core;
|
|
global using GrpcBasket;
|
|
global using Microsoft.AspNetCore.Authorization;
|
|
global using Microsoft.AspNetCore.Builder;
|
|
global using Microsoft.AspNetCore.Hosting;
|
|
global using Microsoft.AspNetCore.Http;
|
|
global using Microsoft.AspNetCore.Mvc;
|
|
global using Microsoft.AspNetCore.Mvc.Filters;
|
|
global using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Abstractions;
|
|
global using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
global using Microsoft.eShopOnContainers.Services.Basket.API;
|
|
global using Microsoft.eShopOnContainers.Services.Basket.API.Infrastructure.Repositories;
|
|
global using Microsoft.eShopOnContainers.Services.Basket.API.IntegrationEvents.EventHandling;
|
|
global using Microsoft.eShopOnContainers.Services.Basket.API.IntegrationEvents.Events;
|
|
global using Microsoft.eShopOnContainers.Services.Basket.API.Model;
|
|
global using Microsoft.eShopOnContainers.Services.Basket.API.Services;
|
|
global using Microsoft.Extensions.Configuration;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Microsoft.Extensions.Hosting;
|
|
global using Microsoft.Extensions.Logging;
|
|
global using Serilog.Context;
|
|
global using StackExchange.Redis;
|