11 lines
179 B
C#
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);
|
|
}
|
|
} |