Пример #1
0
        private void ctrlWebsite1_ExcuteCommand(WssCommon.ListWebCommand command, EventArgs e)
        {
            switch (command)
            {
            case WssCommon.ListWebCommand.IndividualWebsitesProduct:
                ConvertProductToRoot(ctrlWebsite1.GetIdCurrent(), ctrlWebsite1.GetDomainCurrent());
                break;

            case WssCommon.ListWebCommand.IndividualWebsitesRootProductAnalyzed:
                RootProductManager(ctrlWebsite1.GetIdCurrent(), ctrlWebsite1.GetDomainCurrent());
                break;

            case WssCommon.ListWebCommand.ViewTagInWebsites:
                ViewTagInWebsites(ctrlWebsite1.GetIdCurrent(), ctrlWebsite1.GetDomainCurrent());
                break;
            }
        }
Пример #2
0
 private void managerRootProductToolStripMenuItem_Click(object sender, EventArgs e)
 {
     _command = WssCommon.ListWebCommand.IndividualWebsitesRootProductAnalyzed;
     ExcuteCommand(_command, e);
 }
Пример #3
0
 private void viewTagInWebsiteToolStripMenuItem_Click(object sender, EventArgs e)
 {
     _command = WssCommon.ListWebCommand.ViewTagInWebsites;
     ExcuteCommand(_command, e);
 }
Пример #4
0
 private void getRootProductToWebsiteToolStripMenuItem_Click(object sender, EventArgs e)
 {
     _command = WssCommon.ListWebCommand.IndividualWebsitesProduct;
     ExcuteCommand(_command, e);
 }