Saves the CRegistration along with all of its child records to the database using the supplied DataServer.

Namespace:  Asi.iBO.Events
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public override bool Save(
	DataServer server
)
Visual Basic (Declaration)
Public Overrides Function Save ( _
	server As DataServer _
) As Boolean
Visual C++
public:
virtual bool Save(
	DataServer^ server
) override

Parameters

server
Type: Asi.iBO..::.DataServer
A DataServer object to use to do the save.

Return Value

True if all goes well, false if an error occurs. If false, check the Errors property for details.

Remarks

This method saves the CRegistration (updating the Order_Meet table), then any CBadge objects (updating the Order_Badge table), then updates the Product_Inventory table and finally the Meet_Master table.

See Also