add UnitWorkBehavior and some files moving add Docker stuff to prepare heroku deployment rename (Up/Down)vote add sample for msbuild tasks
11 lines
191 B
C#
11 lines
191 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HN.Domain
|
|
{
|
|
public interface ICommentRepository
|
|
{
|
|
Task AddAsync(Comment comment);
|
|
Task<Comment> GetByIdAsync(Guid id);
|
|
}
|
|
} |