DocSpace-client/products/ASC.People/Server/GlobalUsings.cs

87 lines
3.4 KiB
C#
Raw Normal View History

2022-03-15 18:00:53 +00:00
// (c) Copyright Ascensio System SIA 2010-2022
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights.
//
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
global using System.Net.Mail;
2022-01-29 22:13:42 +00:00
global using System.Security;
2022-05-13 11:24:01 +00:00
global using System.Security.Claims;
2022-01-29 22:13:42 +00:00
global using System.ServiceModel.Security;
global using System.Web;
2022-04-14 19:42:15 +00:00
2022-01-29 22:13:42 +00:00
global using ASC.Api.Core;
2022-02-28 19:23:39 +00:00
global using ASC.Api.Core.Convention;
2022-04-14 19:42:15 +00:00
global using ASC.Api.Core.Extensions;
2022-01-29 22:13:42 +00:00
global using ASC.Api.Utils;
2022-09-07 15:23:08 +00:00
global using ASC.Common;
global using ASC.Common.Caching;
2022-01-29 22:13:42 +00:00
global using ASC.Common.Utils;
global using ASC.Common.Web;
2022-08-29 20:35:25 +00:00
global using ASC.Core;
global using ASC.Core.Common;
2022-01-29 22:13:42 +00:00
global using ASC.Core.Common.Settings;
global using ASC.Core.Tenants;
global using ASC.Core.Users;
global using ASC.Data.Reassigns;
global using ASC.FederatedLogin;
global using ASC.FederatedLogin.LoginProviders;
2022-09-13 20:47:35 +00:00
global using ASC.FederatedLogin.Profile;
global using ASC.Files.Core.Security;
2022-09-14 10:00:08 +00:00
global using ASC.Files.Core.VirtualRooms;
global using ASC.Files.Core.Resources;
2022-02-21 15:35:57 +00:00
global using ASC.MessagingSystem.Core;
global using ASC.MessagingSystem.EF.Model;
2022-01-29 22:13:42 +00:00
global using ASC.People;
2022-05-26 09:01:54 +00:00
global using ASC.People.Api;
2022-02-28 18:54:08 +00:00
global using ASC.People.ApiModels.RequestDto;
global using ASC.People.ApiModels.ResponseDto;
2022-05-13 11:24:01 +00:00
global using ASC.People.Log;
2022-01-29 22:13:42 +00:00
global using ASC.People.Resources;
global using ASC.Security.Cryptography;
global using ASC.Web.Api.Models;
global using ASC.Web.Api.Routing;
global using ASC.Web.Core;
global using ASC.Web.Core.Mobile;
global using ASC.Web.Core.PublicResources;
2022-08-29 20:35:25 +00:00
global using ASC.Web.Core.Users;
2022-08-30 07:26:55 +00:00
global using ASC.Web.Core.Utility;
2022-08-29 20:35:25 +00:00
global using ASC.Web.Files.Classes;
2022-01-29 22:13:42 +00:00
global using ASC.Web.Studio.Core;
global using ASC.Web.Studio.Core.Notify;
global using ASC.Web.Studio.UserControls.Statistics;
global using ASC.Web.Studio.Utility;
2022-04-14 19:42:15 +00:00
2022-02-28 20:25:25 +00:00
global using Autofac;
2022-04-14 19:42:15 +00:00
2022-01-29 22:13:42 +00:00
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Http.Extensions;
global using Microsoft.AspNetCore.Mvc;
2022-02-28 20:25:25 +00:00
global using Microsoft.Extensions.Hosting.WindowsServices;
2022-04-14 19:42:15 +00:00
2022-01-29 22:13:42 +00:00
global using SixLabors.ImageSharp;
2022-09-06 08:29:01 +00:00
global using SixLabors.ImageSharp.Formats;
global using ASC.Core.Common.EF;
global using ASC.Files.Core.EF;