using AipGateway.API.Domain.Models.Dto; using AipGateway.API.Domain.Models.Response; namespace AipGateway.API.Application.Interfaces.Services { public interface IApiDbService { Task ReloadDatabase(); // Base Table Interface Task> GetLinkedSystems(); Task> GetLinkedServers(); Task> GetLinkedApiKeys(); Task> GetLinkedDecryptKeys(); } }