public TransportationStore_Update(DataRow rows, Transportation_Report transportationReport, XtraTabControl xtraTabControlStoresContent)
 {
     InitializeComponent();
     dbconnection  = new MySqlConnection(connection.connectionString);
     dbconnection2 = new MySqlConnection(connection.connectionString);
     selRow        = rows;
 }
 public TransportationStoreBill_Update2(int transferProductID, string fromStore, string toStore, DateTime date, Transportation_Report transportationReport, XtraTabControl xtraTabControlStoresContent)
 {
     InitializeComponent();
     dbconnection      = new MySqlConnection(connection.connectionString);
     dbconnection2     = new MySqlConnection(connection.connectionString);
     TransferProductID = transferProductID;
     FromStore         = fromStore;
     ToStore           = toStore;
     Date = date;
     tabControlStoresContent = xtraTabControlStoresContent;
 }