2025-03-11 10:24:11 +08:00
|
|
|
// Global using directives
|
|
|
|
|
|
|
|
|
|
global using System;
|
|
|
|
|
global using System.Collections.Generic;
|
|
|
|
|
global using System.Diagnostics;
|
|
|
|
|
global using System.IO;
|
|
|
|
|
global using System.Linq;
|
|
|
|
|
global using System.Runtime.InteropServices;
|
|
|
|
|
global using System.Threading.Tasks;
|
2025-05-27 14:02:24 +08:00
|
|
|
global using JiShe.ServicePro.BasicManagement;
|
|
|
|
|
global using JiShe.ServicePro.DataDictionaryManagement;
|
|
|
|
|
global using JiShe.ServicePro.LanguageManagement;
|
|
|
|
|
global using JiShe.ServicePro.NotificationManagement;
|
|
|
|
|
global using JiShe.ServicePro.MultiTenancy;
|
|
|
|
|
global using JiShe.ServicePro.Users.Dto;
|
2025-03-11 10:24:11 +08:00
|
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
global using Microsoft.Extensions.Logging;
|
|
|
|
|
global using Microsoft.Extensions.Logging.Abstractions;
|
|
|
|
|
global using Volo.Abp.AutoMapper;
|
|
|
|
|
global using Volo.Abp.Data;
|
|
|
|
|
global using Volo.Abp.DependencyInjection;
|
|
|
|
|
global using Volo.Abp.Domain.Services;
|
|
|
|
|
global using Volo.Abp.EventBus.Distributed;
|
|
|
|
|
global using Volo.Abp.Identity;
|
|
|
|
|
global using Volo.Abp.Localization;
|
|
|
|
|
global using Volo.Abp.Modularity;
|
|
|
|
|
global using Volo.Abp.MultiTenancy;
|
|
|
|
|
global using Volo.Abp.ObjectMapping;
|
|
|
|
|
global using Volo.Abp.SettingManagement;
|
|
|
|
|
global using Volo.Abp.Settings;
|
|
|
|
|
global using Volo.Abp.TenantManagement;
|
|
|
|
|
global using Volo.Abp.Uow;
|