Ejemplo n.º 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;
            }
        }
Ejemplo n.º 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();
        }
Ejemplo n.º 3
0
 /* Конструктор */
 public SemCoreController(SemCoreView _form)
 {
     connection  = DBData.GetDBConnection();
     controlForm = _form;
 }
Ejemplo n.º 4
0
 /* Конструктор */
 public ProductTypesController(SemCoreView _controlForm)
 {
     connection             = DBData.GetDBConnection();
     controlFormSemCoreView = _controlForm;
 }
Ejemplo n.º 5
0
 public MarketplaceController(SemCoreView _mf)
 {
     connection         = DBData.GetDBConnection();
     controlSemCoreView = _mf;
 }
Ejemplo n.º 6
0
 /* Конструктор */
 public KeywordCategoryController(SemCoreView _controlForm)
 {
     connection             = DBData.GetDBConnection();
     controlFormSemCoreView = _controlForm;
 }
Ejemplo n.º 7
0
 public SemCoreArchiveController(SemCoreView _form)
 {
     connection         = DBData.GetDBConnection();
     controlSemCoreView = _form;
 }