// Public // Constructor public cSyncClient(cLogging log) { m_haveKey = false; m_key = 3; m_client = new TcpClient(); socket_ = m_client.Client; m_cryptlib = new cCryptLib(); m_log = log; m_timer = new System.Timers.Timer(); m_timer.Interval = 30; m_buffin = new membuffer(); m_buffout = new membuffer(); }
static void Main() { cLogging commonlog = new cLogging("common.log"); commonlog.write("Common Service started."); console.message("================================================"); console.message("|| ||"); console.message("|| PangServ - Pangya Server Emulator ||"); console.message("|| Copyright <c> 2016 - 2017 PangServ-Team ||"); console.message("|| ||"); console.message("================================================"); config com_config = new config("server.ini"); cSyncClient Syncserver = new cSyncClient(commonlog); Syncserver.StartListening(); commonlog.write("Common Service stopped."); }
public cGenelIslemler() { cLog = new cLogging(false); db = DatabaseFactory.CreateDatabase(); }
public cTahsilat() { cLog = new cLogging(false); db = DatabaseFactory.CreateDatabase(); }
public cRaporlama() { cLog = new cLogging(false); db = DatabaseFactory.CreateDatabase(); }
public cUrunListeleri() { cLog = new cLogging(false); db = DatabaseFactory.CreateDatabase(); }
public cUyeIslemleri() { cLog = new cLogging(false); db = DatabaseFactory.CreateDatabase(); }
public cUrunGenel() { cLog = new cLogging(false); db = DatabaseFactory.CreateDatabase(); }