GlobalUsings.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. global using Microsoft.OpenApi.Models;
  2. global using System.Text.RegularExpressions;
  3. global using Microsoft.AspNetCore.Authorization;
  4. global using Microsoft.AspNetCore.Mvc;
  5. global using Serilog;
  6. global using OASystem.Domain.Enums;
  7. global using SqlSugar;
  8. global using Autofac;
  9. global using Autofac.Extensions.DependencyInjection;
  10. global using System.Reflection;
  11. global using OASystem.Domain.ViewModels;
  12. global using OASystem.Domain.Dtos;
  13. global using OASystem.Domain.Entities;
  14. global using OASystem.Infrastructure.Repositories;
  15. global using AutoMapper;
  16. global using Swashbuckle.AspNetCore.SwaggerGen;
  17. global using Microsoft.AspNetCore.Authentication.JwtBearer;
  18. global using Microsoft.IdentityModel.Tokens;
  19. global using OASystem.API;
  20. global using OASystem.Domain.AutoMappers;
  21. global using OASystem.Infrastructure.Tools;
  22. global using System.Text;
  23. global using Swashbuckle.AspNetCore.Swagger;
  24. global using Newtonsoft.Json;
  25. global using Newtonsoft.Json.Linq;
  26. global using QRCoder;
  27. global using System.Drawing;
  28. global using System.Drawing.Drawing2D;
  29. global using System.Net;
  30. global using System.Security.Cryptography;
  31. global using Org.BouncyCastle.Asn1.GM;
  32. global using Org.BouncyCastle.Asn1.X9;
  33. global using Org.BouncyCastle.Crypto.Parameters;
  34. global using Org.BouncyCastle.Crypto;
  35. global using Org.BouncyCastle.Security;
  36. global using Org.BouncyCastle.Crypto.Engines;
  37. global using Org.BouncyCastle.Crypto.Digests;
  38. global using Org.BouncyCastle.Utilities;
  39. global using Org.BouncyCastle.Utilities.Encoders;
  40. global using Org.BouncyCastle.Crypto.Generators;
  41. global using Org.BouncyCastle.X509;
  42. global using Org.BouncyCastle.Math;
  43. global using Org.BouncyCastle.Asn1;
  44. global using System.IO;
  45. global using System.Drawing.Imaging;
  46. global using System;
  47. global using System.Collections.Generic;
  48. global using System.Linq;
  49. global using OASystem.Domain;