1234567891011121314151617 |
-
- using Aip.Service.Models.Dto;
- using Aip.Service.Models.Response;
- namespace Aip.Service.Services.Interfaces;
- public interface IApiDbService
- {
- Task<GeneralResponse> ReloadDatabase();
- // Base Table Interface
- Task<List<LinkedSystemDto>> GetLinkedSystems();
- Task<List<LinkedServerDto>> GetLinkedServers();
- Task<List<LinkedApiKeyDto>> GetLinkedApiKeys();
- Task<List<LinkedDecryptKeyDto>> GetLinkedDecryptKeys();
- }
|