public DataTable SelectDepoInfo(params Int32[] info)
 {
     DataTable result = null;
     using (MySqlConnection myCon = new MySqlConnection(connString))
     {
         myCommand = new MySqlCommand();
         myCommand.Connection = myCon;
         myCommand.Connection.Open();
         using (SelectingCommand SelCmd = new SelectingCommand(myCommand))
         {
             result = SelCmd.GetDepoInfo(info);
         }
         myCommand.Connection.Close();
     }
     return result;
 }