예제 #1
0
        private void btn_DoSemCore_Click(object sender, EventArgs e)
        {
            SemCoreView semcore = new SemCoreView(this);

            if (!semcore.NoProdType && !semcore.NoKeyCat)
            {
                semcore.Show();
                this.Visible = false;
            }
        }
예제 #2
0
        /* Конструктор */
        public KeywordCategoryView(SemCoreView _mf)
        {
            InitializeComponent();

            kcController = new KeywordCategoryController(this);
            ptController = new ProductTypesController(this);

            HardClose = false;

            connection         = DBData.GetDBConnection();
            controlSemCoreView = _mf;

            kcController.GetKeywordCategoriesJOINProductTypes();
            Draw();

            ptController.GetProductTypesAll();
            fill_cb_ProductTypes();
        }
예제 #3
0
 /* Конструктор */
 public SemCoreController(SemCoreView _form)
 {
     connection  = DBData.GetDBConnection();
     controlForm = _form;
 }
예제 #4
0
 /* Конструктор */
 public ProductTypesController(SemCoreView _controlForm)
 {
     connection             = DBData.GetDBConnection();
     controlFormSemCoreView = _controlForm;
 }
예제 #5
0
 public MarketplaceController(SemCoreView _mf)
 {
     connection         = DBData.GetDBConnection();
     controlSemCoreView = _mf;
 }
예제 #6
0
 /* Конструктор */
 public KeywordCategoryController(SemCoreView _controlForm)
 {
     connection             = DBData.GetDBConnection();
     controlFormSemCoreView = _controlForm;
 }
예제 #7
0
 public SemCoreArchiveController(SemCoreView _form)
 {
     connection         = DBData.GetDBConnection();
     controlSemCoreView = _form;
 }