using System; namespace Domain { public interface ILinkRepository { void Add(Link link); Link GetById(Guid id); } }