Public Function AddServiceCallType( _ ByVal pIServiceCallType As ServiceCallType _ ) As ServiceCallTypeParams
ServiceCallType callType = callTypesService.GetDataInterface(ServiceCallTypesServiceDataInterfaces.sctsServiceCallType) as ServiceCallType; callType.Name = "a new call type"; callType.Description = "description for this type"; try { callTypesService.AddServiceCallType(callType); } catch(Exception ex) { Interaction.MsgBox(ex.Message, (Microsoft.VisualBasic.MsgBoxStyle)(0), null); }
ServiceCallTypesService Object