using System.Threading.Tasks; namespace HN.Domain { public interface ILinkRepository { Task AddAsync(Link link); } }