Delete

 

Dovico.TrackITAPI.CEmployee.Delete(System.String,Dovico.TrackITAPI.CStateInfo)

 

 

Function Overview:

This method takes xml for deleting employees according to the http://www.dovico.com/schemas/id.xsd schema.

 

 

Parameter List:

sXml - string - xml for IDs of employees to be deleted conforming to id.xsd schema

siState - CStateInfo - State information needed to carry out transaction

 

Returns

An empty string reserved for future use.

 

Example:

// initialize a string of xml containing employee IDs to delete

string sXml = "<ID:IDS xmlns:ID=\"http://www.dovico.com/schemas/id.xsd\">";

sXml += "<ID>2280</ID></ID:IDS>";

// call the method

wsapi.MethodInvoke("EmployeeDelete", sXml, stToken);