16 lines
558 B
C#
16 lines
558 B
C#
|
|
global using MediatR;
|
||
|
|
global using FluentValidation;
|
||
|
|
global using Mapster;
|
||
|
|
|
||
|
|
global using CMSMicroservice.Domain.Entities;
|
||
|
|
global using CMSMicroservice.Application.Common.Interfaces;
|
||
|
|
global using System.Threading;
|
||
|
|
global using System.Threading.Tasks;
|
||
|
|
global using System;
|
||
|
|
global using System.Collections.Generic;
|
||
|
|
global using System.Linq;
|
||
|
|
global using Microsoft.EntityFrameworkCore;
|
||
|
|
global using CMSMicroservice.Application.Common.Exceptions;
|
||
|
|
global using CMSMicroservice.Application.Common.Extensions;
|
||
|
|
global using CMSMicroservice.Application.Common.Models;
|