📄 processorder.h
字号:
//ProcessOrder.h
#using <System.dll>
#using <System.Data.dll>
#using <System.Enterpriseservices.dll>
#include <tchar.h>
using namespace System;
using System::String;
using namespace System::Data;
using namespace System::EnterpriseServices;
using namespace System::Runtime::InteropServices;
using namespace System::Data::SqlClient;
using System::EnterpriseServices::ServicedComponent;
namespace ProcessOrder
{
[Transaction(TransactionOption::Required)]
public __gc class Basket:public ServicedComponent
{
// TODO: Add your methods for this class here.
public:
int updateBasket(String *strProdID,String *strCustID, String *strSessionID, String *strOrderDate, String *strOrderStatus);
};
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -