PersonSession.ToSQLInsertString C# (CSharp) Méthode

ToSQLInsertString() public méthode

public ToSQLInsertString ( ) : string
Résultat string
    public string ToSQLInsertString()
    {
        return uniqueID.ToString() + ", " + personID + ", " + sessionID + ", " +
            Util.ConvertToPoint(height) + ", " + Util.ConvertToPoint(weight) + ", " +
            sportID + ", " + speciallityID + ", " + practice + ", '" +
            comments + "', '', ''";
    }