public bool DeleteMenu(int menuID)
 {
     return(_restaurantRepo.DeleteMenu(menuID));
 }
        public bool DeleteMenu(int MenuID)
        {
            var isSuccess = RestaurantRepo.DeleteMenu(MenuID);

            return(isSuccess);
        }