Dovico.TrackITAPI.CEmployee.GetInfo(System.String,Dovico.TrackITAPI.CStateInfo)
Function Overview:
Returns all information concerning employee in an xml string.
Parameter List:
sXml - string - string of xml in form getinfo.xsd that has the Employee ID for the information you wish to retrieve
siState - CStateInfo - State information needed to process transaction
Returns
A string containing information about the employee in an XML format.
Example:
// initialize a string of xml containing the ID of the Employee to retrieve information for
string sXml = "<GetInfo:ID xmlns:GetInfo=\"http://www.dovico.com/schemas/getinfo.xsd\">1129</GetInfo:ID>";
// call the method
string sEmployeeInfo = wsapi.MethodInvoke("EmployeeGetInfo", sXml, stToken);