add UnitWorkBehavior and some files moving add Docker stuff to prepare heroku deployment rename (Up/Down)vote add sample for msbuild tasks
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);
|
|
}
|
|
} |