mirror of
https://github.com/therealKyp/Earth-and-Beyond-server
synced 2026-08-13 22:23:03 -04:00
29 lines
563 B
C#
29 lines
563 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Net7_Tools.Database
|
|
{
|
|
public class TableHandler
|
|
{
|
|
private TabPage tabPage;
|
|
private TableIO tableIO;
|
|
|
|
public TableHandler(TabPage tabPage, TableIO tableIO)
|
|
{
|
|
this.tabPage = tabPage;
|
|
this.tableIO = tableIO;
|
|
}
|
|
|
|
public TabPage getTabPage()
|
|
{
|
|
return tabPage;
|
|
}
|
|
|
|
public TableIO getTableIO()
|
|
{
|
|
return tableIO;
|
|
}
|
|
}
|
|
}
|