IApiDbService.cs 439 B

1234567891011121314151617
  1. 
  2. using Aip.Service.Models.Dto;
  3. using Aip.Service.Models.Response;
  4. namespace Aip.Service.Services.Interfaces;
  5. public interface IApiDbService
  6. {
  7. Task<GeneralResponse> ReloadDatabase();
  8. // Base Table Interface
  9. Task<List<LinkedSystemDto>> GetLinkedSystems();
  10. Task<List<LinkedServerDto>> GetLinkedServers();
  11. Task<List<LinkedApiKeyDto>> GetLinkedApiKeys();
  12. Task<List<LinkedDecryptKeyDto>> GetLinkedDecryptKeys();
  13. }