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.

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.InsuranceCompany;
  7. global using Diligent.WebAPI.Contracts.DTOs.InsurancePolicy;
  8. global using Diligent.WebAPI.Contracts.DTOs.Insurer;
  9. global using Diligent.WebAPI.Contracts.DTOs.WebhookDefinition;
  10. global using Diligent.WebAPI.Contracts.DTOs.WebhookSubscription;
  11. global using Diligent.WebAPI.Contracts.DTOs.SelectionProcess;
  12. global using Diligent.WebAPI.Contracts.DTOs.Ad;
  13. global using Diligent.WebAPI.Contracts.DTOs.Auth;
  14. global using Diligent.WebAPI.Contracts.DTOs.User;
  15. global using Diligent.WebAPI.Contracts.DTOs;
  16. global using Diligent.WebAPI.Contracts.Exceptions;
  17. global using Diligent.WebAPI.Contracts.Models;
  18. global using Diligent.WebAPI.Contracts.DTOs.Applicant;
  19. global using Diligent.WebAPI.Contracts.DTOs.Technology;
  20. global using Diligent.WebAPI.Contracts.DTOs.SelectionLevel;
  21. global using Diligent.WebAPI.Contracts.DTOs.Comment;
  22. global using Diligent.WebAPI.Business.Extensions;
  23. global using Microsoft.EntityFrameworkCore;
  24. global using Microsoft.Extensions.Options;
  25. global using Microsoft.IdentityModel.Tokens;
  26. global using System.IdentityModel.Tokens.Jwt;
  27. global using System.Security.Claims;
  28. global using System.Text;
  29. global using Newtonsoft.Json;
  30. global using RestSharp;
  31. global using AutoMapper;
  32. global using System.Web;
  33. global using Microsoft.AspNetCore.Identity;
  34. global using Microsoft.Extensions.Logging;
  35. global using System.Diagnostics.CodeAnalysis;