internal static CommentFullModel CreateComment(Comment comment) { return new CommentFullModel() { ID = comment.ID, Text = comment.Text, Author = UserModel.CreateModel(comment.Author) }; }
public static CommentModel CreateModel(Comment comment) { return new CommentModel { ID = comment.ID, Text = comment.Text, ImageId = comment.Image_ID }; }