public static MySQLWork GetInstance() { if (instance == null) { instance = new MySQLWork(); } return(instance); }
public string SetInDatabase(bool Diagnostic) { MySQLWork wrk = MySQLWork.GetInstance(); if (Diagnostic) { return(wrk.WriteRecord(this, Diagnostic)); } else { return(wrk.WriteRecord(this, Diagnostic)); } }
public string SetInDatabase() { MySQLWork wrk = MySQLWork.GetInstance(); return(wrk.WriteRecord(this)); }