public int InsertNewMeal(Meal meal)
 {
     try
     {
         return(MealManager.InsertNewMeal(meal));
     }
     catch
     {
         return(0);
     }
 }