/**
  * @param integer $id
  * @return Recipe|bool
  */
 public static function findById($id)
 {
     return RecipeRepository::searchOne($id);
 }