12 lines
212 B
C#
12 lines
212 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HN.Domain
|
|
{
|
|
public interface ILinkRepository
|
|
{
|
|
Task AddAsync(Link link);
|
|
Task UpdateAsync(Link link);
|
|
Task<Link> GetByIdAsync(Guid id);
|
|
}
|
|
} |