30 lines
1.3 KiB
C#
30 lines
1.3 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 Basket.API.IntegrationEvents.EventHandling;
|
|
global using Basket.API.IntegrationEvents.Events;
|
|
global using Basket.API.Model;
|
|
global using Basket.API.Repositories;
|
|
global using Grpc.Core;
|
|
global using GrpcBasket;
|
|
global using Microsoft.AspNetCore.Authorization;
|
|
global using Microsoft.AspNetCore.Builder;
|
|
global using Microsoft.AspNetCore.Http;
|
|
global using Microsoft.AspNetCore.Mvc;
|
|
global using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Abstractions;
|
|
global using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
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.Logging;
|
|
global using Services.Common;
|
|
global using StackExchange.Redis;
|