public void deleteCommonMeal(int MEALID)
 {
     
   
     CommonMealMasterSp objCommonMeal = new CommonMealMasterSp();
     objCommonMeal.deleteCommonMeal(MEALID);
 }
            public void InsertUpdateCommonMeal(ArrayList CommonMeal)
            {

               
                CommonMealMasterSp objCommonMeal = new CommonMealMasterSp();
                CommonMeal.Insert(2, Session["usersid"].ToString());
                objCommonMeal.InsertUpdateCommonMeal(CommonMeal);

            }