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.

123456789101112131415161718192021222324252627
  1. global using Diligent.WebAPI.Business.Services.Interfaces;
  2. global using Diligent.WebAPI.Business.Settings;
  3. global using Diligent.WebAPI.Data;
  4. global using Diligent.WebAPI.Data.Entities;
  5. global using Diligent.WebAPI.Contracts.DTOs.InsuranceCompany;
  6. global using Diligent.WebAPI.Contracts.DTOs.InsurancePolicy;
  7. global using Diligent.WebAPI.Contracts.DTOs.Insurer;
  8. global using Diligent.WebAPI.Contracts.DTOs.WebhookDefinition;
  9. global using Diligent.WebAPI.Contracts.DTOs.WebhookSubscription;
  10. global using Diligent.WebAPI.Contracts.DTOs.Auth;
  11. global using Diligent.WebAPI.Contracts.Exceptions;
  12. global using Microsoft.EntityFrameworkCore;
  13. global using Microsoft.Extensions.Options;
  14. global using Microsoft.IdentityModel.Tokens;
  15. global using System.IdentityModel.Tokens.Jwt;
  16. global using System.Security.Claims;
  17. global using System.Text;
  18. global using Newtonsoft.Json;
  19. global using RestSharp;
  20. global using AutoMapper;
  21. global using Microsoft.AspNetCore.Identity;