예제 #1
0
 public bool DeleteMenu(int menuID)
 {
     return(_restaurantRepo.DeleteMenu(menuID));
 }
예제 #2
0
        public bool DeleteMenu(int MenuID)
        {
            var isSuccess = RestaurantRepo.DeleteMenu(MenuID);

            return(isSuccess);
        }