using System.Collections.Generic; using System.Threading.Tasks; using BackgroundBuilder.Models; namespace BackgroundBuilder.Repositories { public interface IContatoRepository { Task> GetAllAsync(); Task InsertUpdateAsync(Contato c); Task DeleteAsync(string ramal); } }