public static Comment FromModelToData(CommentDataModel model, string userId, Guid recipeId)
 {
     return(new Comment()
     {
         RecipeId = recipeId,
         UserId = userId,
         Text = model.Text
     });
 }
 public static Comment FromModelToData(CommentDataModel model, string userId, Guid recipeId)
 {
     return new Comment()
     {
         RecipeId = recipeId,
         UserId = userId,
         Text = model.Text
     };
 }