DocSpace-buildtools/web/ASC.Web.Api/GlobalUsings.cs

114 lines
3.9 KiB
C#
Raw Normal View History

global using System;
2022-01-31 15:13:08 +00:00
global using System.Collections.Generic;
2022-02-02 09:02:49 +00:00
global using System.Collections.Specialized;
global using System.Globalization;
2022-02-02 09:02:49 +00:00
global using System.IO;
global using System.Linq;
2022-01-31 15:13:08 +00:00
global using System.Net;
global using System.Net.Http;
2022-02-02 09:02:49 +00:00
global using System.Net.Mail;
global using System.Net.Sockets;
global using System.Runtime.InteropServices;
2022-01-31 15:13:08 +00:00
global using System.Security;
2022-02-02 09:02:49 +00:00
global using System.ServiceModel.Security;
global using System.Text.Json;
global using System.Text.Json.Serialization;
global using System.Text.RegularExpressions;
global using System.Threading;
2022-02-02 09:02:49 +00:00
global using System.Threading.Tasks;
2022-01-31 15:13:08 +00:00
global using System.Web;
2022-02-02 09:02:49 +00:00
global using ASC.Api.Collections;
global using ASC.Api.Core;
2022-03-01 10:58:02 +00:00
global using ASC.Api.Core.Convention;
2022-02-02 09:02:49 +00:00
global using ASC.Api.Settings;
global using ASC.Api.Utils;
2022-01-31 15:13:08 +00:00
global using ASC.AuditTrail;
2022-02-03 13:53:34 +00:00
global using ASC.AuditTrail.Models;
2022-03-01 10:58:02 +00:00
global using ASC.AuditTrail.Repositories;
global using ASC.Common;
global using ASC.Common.Caching;
2022-01-31 15:13:08 +00:00
global using ASC.Common.Logging;
2022-02-02 09:02:49 +00:00
global using ASC.Common.Security.Authorizing;
global using ASC.Common.Threading;
global using ASC.Common.Utils;
global using ASC.Core;
2022-01-31 15:13:08 +00:00
global using ASC.Core.Billing;
2022-02-02 09:02:49 +00:00
global using ASC.Core.Common.Configuration;
global using ASC.Core.Common.Notify;
2022-01-31 15:13:08 +00:00
global using ASC.Core.Common.Notify.Push;
global using ASC.Core.Common.Security;
global using ASC.Core.Common.Settings;
2022-02-02 09:02:49 +00:00
global using ASC.Core.Configuration;
global using ASC.Core.Encryption;
global using ASC.Core.Tenants;
global using ASC.Core.Users;
2022-02-02 09:02:49 +00:00
global using ASC.Data.Backup;
global using ASC.Data.Backup.Contracts;
global using ASC.Data.Storage;
global using ASC.Data.Storage.Configuration;
global using ASC.Data.Storage.Encryption;
global using ASC.Data.Storage.Migration;
global using ASC.FederatedLogin;
2022-02-02 09:02:49 +00:00
global using ASC.FederatedLogin.Helpers;
global using ASC.FederatedLogin.LoginProviders;
global using ASC.FederatedLogin.Profile;
2022-02-02 09:02:49 +00:00
global using ASC.IPSecurity;
2022-02-21 15:35:57 +00:00
global using ASC.MessagingSystem.Core;
global using ASC.MessagingSystem.Models;
global using ASC.Security.Cryptography;
2022-03-01 10:58:02 +00:00
global using ASC.Web.Api;
global using ASC.Web.Api.ApiModel.RequestsDto;
global using ASC.Web.Api.ApiModel.ResponseDto;
2022-02-02 09:02:49 +00:00
global using ASC.Web.Api.Controllers;
2022-03-01 10:58:02 +00:00
global using ASC.Web.Api.Controllers.Settings;
global using ASC.Web.Api.Core;
global using ASC.Web.Api.Models;
global using ASC.Web.Api.Routing;
global using ASC.Web.Core;
2022-01-31 15:13:08 +00:00
global using ASC.Web.Core.Files;
global using ASC.Web.Core.Mobile;
global using ASC.Web.Core.PublicResources;
global using ASC.Web.Core.Sms;
global using ASC.Web.Core.Users;
2022-01-31 15:13:08 +00:00
global using ASC.Web.Core.Utility;
2022-02-02 09:02:49 +00:00
global using ASC.Web.Core.Utility.Settings;
2022-01-31 15:13:08 +00:00
global using ASC.Web.Core.WebZones;
2022-02-02 09:02:49 +00:00
global using ASC.Web.Core.WhiteLabel;
global using ASC.Web.Studio.Core;
global using ASC.Web.Studio.Core.Notify;
2022-02-02 09:02:49 +00:00
global using ASC.Web.Studio.Core.SMS;
2022-01-31 15:13:08 +00:00
global using ASC.Web.Studio.Core.Statistic;
2022-02-02 09:02:49 +00:00
global using ASC.Web.Studio.Core.TFA;
2022-01-31 15:13:08 +00:00
global using ASC.Web.Studio.UserControls.CustomNavigation;
global using ASC.Web.Studio.UserControls.FirstTime;
2022-02-02 09:02:49 +00:00
global using ASC.Web.Studio.UserControls.Management;
2022-01-31 15:13:08 +00:00
global using ASC.Web.Studio.UserControls.Statistics;
2022-02-02 09:02:49 +00:00
global using ASC.Web.Studio.Utility;
2022-01-31 15:13:08 +00:00
global using ASC.Webhooks.Core;
global using ASC.Webhooks.Core.Dao.Models;
2022-03-01 10:58:02 +00:00
global using Autofac;
2022-02-02 09:02:49 +00:00
global using Autofac.Extensions.DependencyInjection;
2022-01-31 15:13:08 +00:00
global using Google.Authenticator;
2022-02-02 09:02:49 +00:00
global using MailKit.Security;
global using Microsoft.AspNetCore.Authorization;
2022-03-01 10:58:02 +00:00
global using Microsoft.AspNetCore.Builder;
2022-01-31 15:13:08 +00:00
global using Microsoft.AspNetCore.Hosting;
2022-02-02 09:02:49 +00:00
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Mvc;
2022-01-31 15:13:08 +00:00
global using Microsoft.AspNetCore.Mvc.ModelBinding;
global using Microsoft.Extensions.Caching.Memory;
2022-02-02 09:02:49 +00:00
global using Microsoft.Extensions.Configuration;
global using Microsoft.Extensions.DependencyInjection;
2022-01-31 15:13:08 +00:00
global using Microsoft.Extensions.Hosting;
2022-03-01 10:58:02 +00:00
global using Microsoft.Extensions.Hosting.WindowsServices;
2022-02-02 09:02:49 +00:00
global using Microsoft.Extensions.Options;
2022-01-31 15:13:08 +00:00
2022-02-02 09:02:49 +00:00
global using MimeKit;
2022-01-31 15:13:08 +00:00
2022-02-02 09:02:49 +00:00
global using static ASC.Security.Cryptography.EmailValidationKeyProvider;