You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Usings.cs 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. global using Diligent.WebAPI.Business.Services.Interfaces;
  2. global using Diligent.WebAPI.Business.Settings;
  3. global using Diligent.WebAPI.Business.Helper;
  4. global using Diligent.WebAPI.Data;
  5. global using Diligent.WebAPI.Data.Entities;
  6. global using Diligent.WebAPI.Contracts.DTOs.WebhookDefinition;
  7. global using Diligent.WebAPI.Contracts.DTOs.WebhookSubscription;
  8. global using Diligent.WebAPI.Contracts.DTOs.Auth;
  9. global using Diligent.WebAPI.Contracts.DTOs.User;
  10. global using Diligent.WebAPI.Contracts.DTOs;
  11. global using Diligent.WebAPI.Contracts.Exceptions;
  12. global using Diligent.WebAPI.Contracts.Models;
  13. global using Diligent.WebAPI.Business.Extensions;
  14. global using Microsoft.EntityFrameworkCore;
  15. global using Microsoft.Extensions.Options;
  16. global using Microsoft.IdentityModel.Tokens;
  17. global using System.IdentityModel.Tokens.Jwt;
  18. global using System.Security.Claims;
  19. global using System.Text;
  20. global using Newtonsoft.Json;
  21. global using RestSharp;
  22. global using AutoMapper;
  23. global using System.Web;
  24. global using Microsoft.AspNetCore.Identity;
  25. global using Microsoft.Extensions.Logging;
  26. global using System.Diagnostics.CodeAnalysis;