Example #1
0
        private void showSalesDataToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            ReportSalesView repSales = new ReportSalesView(this);

            repSales.Show();
            this.Visible = false;
        }
Example #2
0
 /* Конструктор */
 public ProductsController(ReportSalesView _controlForm)
 {
     connection             = DBData.GetDBConnection();
     controlReportSalesView = _controlForm;
 }
Example #3
0
        //private MarketplaceView


        public MarketplaceController(ReportSalesView _mf)
        {
            connection             = DBData.GetDBConnection();
            controlReportSalesView = _mf;
        }
Example #4
0
 public AllOrdersController(ReportSalesView _mf)
 {
     connection             = DBData.GetDBConnection();
     controlReportSalesView = _mf;
 }