Namespace: ctAC
Assembly: ctAC (in ctAC.dll)

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "Save a new customer. This should be used when creating a new customer", MessageName := "saveNewCustomerToQueue"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function saveNewCustomerToQueue( _ 
   ByVal inCust As customer,  _ 
   ByVal raiseBusinessRuleViolations As Boolean _ 
) As DataSet
C#
[WebMethodAttribute(Description = "Save a new customer. This should be used when creating a new customer", MessageName = "saveNewCustomerToQueue")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet saveNewCustomerToQueue(
   customer inCust,
   bool raiseBusinessRuleViolations
)
C++
[WebMethodAttribute(Description = L"Save a new customer. This should be used when creating a new customer", MessageName = L"saveNewCustomerToQueue")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet saveNewCustomerToQueue(
   customer inCust,
   bool raiseBusinessRuleViolations
) sealed 
J#
/** @attribute WebMethodAttribute(Description = "Save a new customer. This should be used when creating a new customer", MessageName = "saveNewCustomerToQueue") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet saveNewCustomerToQueue(
   customer inCust,
   bool raiseBusinessRuleViolations
)
JScript
public 

   WebMethodAttribute(Description = "Save a new customer. This should be used when creating a new customer", MessageName = "saveNewCustomerToQueue")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function saveNewCustomerToQueue(
   inCust : customer,
   raiseBusinessRuleViolations : bool
) : DataSet

See Also