public new DatabaseAuthenticationXmlType GetXmlType()
        {
            DatabaseAuthenticationXmlType retValue = new DatabaseAuthenticationXmlType();

            retValue.DatabaseID = this.DatabaseID;
            retValue.UserName = this.UserName;
            retValue.Password = this.Password;

            return retValue;
        }
 public DatabaseAuthentication(DatabaseAuthenticationXmlType xmlType)
     : base(xmlType.UserName, xmlType.Password)
 {
     this.DatabaseID = xmlType.DatabaseID;
 }