protected bool getBool(string parameter)
 {
     return(ParameterFile.getBool(this.filename, this.programName, this.si, this.account, parameter));
 }
 protected int getInt(string parameter)
 {
     return(ParameterFile.getInt(this.filename, this.programName, this.si, this.account, parameter));
 }
 protected string getString(string parameter)
 {
     return(ParameterFile.getString(this.filename, this.programName, this.si, this.account, parameter));
 }
 protected double getDouble(string parameter)
 {
     return(ParameterFile.getDouble(this.filename, this.programName, this.si, this.account, parameter));
 }