public void AddComment(CommentModel model) { var comment = new Comment(); Mapper.CopyProperties<CommentModel, Comment>(model, comment); comment.EntryID = model.Entry.EntryID; comment.Body = comment.RawBody.Sanitize(); _commentRepository.Add(comment); model.CommentID = comment.CommentID; }
public void Update(Comment entity) { throw new NotImplementedException(); }