示例#1
0
        public bool UpdateCakeAmount(int quantity, int id)
        {
            CakeDA cakeDA = new CakeDA();

            return(cakeDA.UpdateCakeQuantity(quantity, id));
        }