GlobalUsings.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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;
  50. global using OASystem.Domain.Dtos.System;
  51. global using OASystem.Domain.Entities.System;
  52. global using OASystem.Domain.ViewModels.System;
  53. global using OASystem.Infrastructure.Repositories.System;
  54. global using OASystem.Domain.Dtos.Resource;
  55. global using OASystem.Domain.Entities.Resource;
  56. global using OASystem.Domain.ViewModels.Resource;
  57. global using OASystem.Infrastructure.Repositories.Resource;