public void Comment(Comment comment) { comment.PostedDate = DateTime.Now; commentStorage.Add(comment); }
public async Task <OperationResult> Add(CommentVM commentVM) { await _commentStorage.Add(commentVM); return(OperationResult.Success); }