2025-09-27 08:46:36 +03:30
|
|
|
global using MediatR;
|
|
|
|
|
global using FluentValidation;
|
|
|
|
|
global using Mapster;
|
|
|
|
|
|
|
|
|
|
global using CMSMicroservice.Domain.Entities;
|
2025-11-29 04:02:02 +03:30
|
|
|
global using CMSMicroservice.Domain.Entities.Club;
|
|
|
|
|
global using CMSMicroservice.Domain.Entities.Network;
|
|
|
|
|
global using CMSMicroservice.Domain.Entities.Commission;
|
|
|
|
|
global using CMSMicroservice.Domain.Entities.Configuration;
|
|
|
|
|
global using CMSMicroservice.Domain.Entities.History;
|
|
|
|
|
global using CMSMicroservice.Domain.Enums;
|
2025-09-27 08:46:36 +03:30
|
|
|
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;
|