using CPATapi.Server.Models; namespace CPATapi.Server.Interfaces; public interface ITapiDirectoryRepository : IRepository { Task> SearchAsync(string[] args); Task SearchByNumberAsync(string number); Task> GetAllAsync(); }