private void btnAddTable_Click(object sender, EventArgs e)
        {
            TableOperations table = new TableOperations();

            try
            {
                table.AddTable(table);
            }
            catch (Exception exception)
            {
                Console.WriteLine(exception);
                throw;
            }
        }