Exemplo n.º 1
0
        private void OnSerachSoftware(string Filter_Key, string Filter_Value, string ResponseToOnSerachSoftware)
        {
            Module_Software_Manager._m_Software_Manager msm = new Module_Software_Manager._m_Software_Manager();
            OnGetSoftwareListResponse SoftwareList          = msm.OnSerachSoftware(Filter_Key, Filter_Value);

            mocm.HubsManager.GetHub("CommandHub").Invoke(ResponseToOnSerachSoftware, SoftwareList);
        }
Exemplo n.º 2
0
        private void OnGetSoftwareList(string ResponseToOnGetSoftwareList)
        {
            Module_Software_Manager._m_Software_Manager msm = new Module_Software_Manager._m_Software_Manager();
            OnGetSoftwareListResponse SoftwareList          = msm.OnGetSoftwareList();

            mocm.HubsManager.GetHub("CommandHub").Invoke(ResponseToOnGetSoftwareList, SoftwareList);
        }
Exemplo n.º 3
0
        private void OnUninstallSoftware(string UninstallString, string ResponseToOnUninstallSoftware)
        {
            Module_Software_Manager._m_Software_Manager msm   = new Module_Software_Manager._m_Software_Manager();
            OnGetSoftwareListResponse UninstalledSoftwareList = msm.OnUninstallSoftware(UninstallString);

            mocm.HubsManager.GetHub("CommandHub").Invoke(ResponseToOnUninstallSoftware, UninstalledSoftwareList);
        }