Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1234567891011121314151617181920212223242526272829
  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.DTOs;
  12. global using Diligent.WebAPI.Contracts.Exceptions;
  13. global using Diligent.WebAPI.Contracts.Models;
  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 Microsoft.AspNetCore.Identity;