Exemplo n.º 1
0
 public static void SetIncidentStateAppShareReceive(Int32 incidentId)
 {
     BllProxyIncidentState.UpdateIncidentState(incidentId, true, "APR");
 }
Exemplo n.º 2
0
 public static void SetIncidentStateInactive(Int32 incidentId)
 {
     BllProxyIncidentState.UpdateIncidentState(incidentId, false, "CLS");
 }
Exemplo n.º 3
0
 public static void SetIncidentStateAppShareSend(Int32 incidentId)
 {
     BllProxyIncidentState.UpdateIncidentState(incidentId, true, "APS");
 }
Exemplo n.º 4
0
 public static void SetIncidentStateScreenCast(Int32 incidentId)
 {
     BllProxyIncidentState.UpdateIncidentState(incidentId, true, "SCT");
 }
Exemplo n.º 5
0
 public static void SetIncidentStateTextChat(Int32 incidentId)
 {
     BllProxyIncidentState.UpdateIncidentState(incidentId, false, "TXT");
 }
Exemplo n.º 6
0
 public static void SetIncidentStateVideoSession(Int32 incidentId)
 {
     BllProxyIncidentState.UpdateIncidentState(incidentId, true, "VID");
 }
Exemplo n.º 7
0
 //------------------------------------------------------------------------------------
 //------------------------------------------------------------------------------------
 //------------------------------------------------------------------------------------
 public static void SetIncidentStateActive(Int32 incidentId)
 {
     BllProxyIncidentState.UpdateIncidentState(incidentId, true, "ACT");
 }