Files
event-sourcing-jambo/source/Jambo.Domain/Aggregates/Posts/IPostWriteOnlyRepository.cs
Ivan Paulovich 2eddbb65e2 ok
2017-08-22 18:30:10 -03:00

11 lines
205 B
C#

using System.Threading.Tasks;
namespace Jambo.Domain.Aggregates.Posts
{
public interface IPostWriteOnlyRepository
{
Task AddPost(Post post);
Task UpdatePost(Post post);
}
}