Ejemplo n.º 1
0
 public async Task PublishAsync(int pingId, ISaver <Comment> commentSaver)
 {
     await commentSaver.GoAsync(this);
 }
Ejemplo n.º 2
0
 public async Task EditAsync(string newValue, ISaver <Comment> commentSaver)
 {
     Value = newValue;
     LastUpdatedDateTimeUtc = DateTime.UtcNow;
     await commentSaver.GoAsync(this);
 }
Ejemplo n.º 3
0
 public async Task Publish(ISaver <UrlPost> postSaver)
 {
     await postSaver.GoAsync(this);
 }