Пример #1
0
 public async Task <Comment> Create(Comment comment)
 {
     comment.CreatedAt = DateTime.Now;
     return(await _commentsDao.Create(comment));
 }