示例#1
0
        public Bill CheckBill([FromBody]Bill account)
        {
            MysqlHelper mysqlhelper = new MysqlHelper();
            Bill bill = mysqlhelper.GetBill(account);

            return bill;
        }