// BackgroundBuilder\Services\IContactService.cs using System.Collections.Generic; using System.Threading.Tasks; using BackgroundBuilder.Models; namespace BackgroundBuilder.Services { public interface IContactService { Task InsertUpdateAsync(Contato contato); Task DeleteAsync(string ramal); Task> GetAllAsync(); IEnumerable GetComando(IEnumerable all); IEnumerable GetSemComando(IEnumerable all); IEnumerable GetAniversarios(IEnumerable all); } }