private void btn_prodModule_Click(object sender, EventArgs e)
        {
            ProductionModule production = new ProductionModule(this);

            production.setCurrentSessionUser(this.currentSessionUser);
            production.Show();
            this.Hide();
        }
 public ProductReport(ProductionModule productionModule)
 {
     InitializeComponent();
     this._productionModule = productionModule;
 }