Exemple #1
0
        public string CheckOut(int id) /* Cập nhật check out cho hóa đơn */
        {
            if (billDAL.Checkout(id))
            {
                Console.ForegroundColor = ConsoleColor.Yellow;

                Console.Write("Ngày thanh toán: ");
                Console.ResetColor();
            }
            return(null);
        }