public static void SetCommunicationType(CommunicationType commType) { if (setCommunicationType != null) { setCommunicationType(commType); } }
public static CommunicationType GetCommunicationType() { CommunicationType cbType = default(CommunicationType); if (getCommunicationType != null) { cbType = getCommunicationType(); } return(cbType); }