hn-dotnet/Domain/ILinkRepository.cs
2020-12-17 12:00:26 +01:00

11 lines
179 B
C#

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