hn-dotnet/Domain/ICommentRepository.cs
Julien Leicher 7a9aefbefc tiny-refactors (#27)
add UnitWorkBehavior and some files moving
add Docker stuff to prepare heroku deployment
rename (Up/Down)vote
add sample for msbuild tasks
2020-12-17 12:01:11 +01:00

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);
}
}