/// <summary>
 /// Initializes a new instance of the SuUserProfile class
 /// </summary>
 /// <param name="comment">Initial <see cref="SuUserProfile.Comment" /> value</param>
 /// <param name="updBy">Initial <see cref="SuUserProfile.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="SuUserProfile.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="SuUserProfile.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="SuUserProfile.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="SuUserProfile.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="SuUserProfile.RowVersion" /> value</param>
 /// <param name="active">Initial <see cref="SuUserProfile.Active" /> value</param>
 /// <param name="prefix">Initial <see cref="SuUserProfile.Prefix" /> value</param>
 /// <param name="address">Initial <see cref="SuUserProfile.Address" /> value</param>
 public SuUserProfile(string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.DB.DTO.DbPrefix prefix)
 {
     this.comment    = comment;
     this.updBy      = updBy;
     this.updDate    = updDate;
     this.creBy      = creBy;
     this.creDate    = creDate;
     this.updPgm     = updPgm;
     this.rowVersion = rowVersion;
     this.active     = active;
     this.prefix     = prefix;
 }
 /// <summary>
 /// Initializes a new instance of the DbPrefixLang class
 /// </summary>
 /// <param name="prefixName">Initial <see cref="DbPrefixLang.PrefixName" /> value</param>
 /// <param name="comment">Initial <see cref="DbPrefixLang.Comment" /> value</param>
 /// <param name="updBy">Initial <see cref="DbPrefixLang.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="DbPrefixLang.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="DbPrefixLang.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="DbPrefixLang.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="DbPrefixLang.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="DbPrefixLang.RowVersion" /> value</param>
 /// <param name="active">Initial <see cref="DbPrefixLang.Active" /> value</param>
 /// <param name="language">Initial <see cref="DbPrefixLang.Language" /> value</param>
 /// <param name="prefix">Initial <see cref="DbPrefixLang.Prefix" /> value</param>
 public DbPrefixLang(string prefixName, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.DB.DTO.DbLanguage language, SS.DB.DTO.DbPrefix prefix)
 {
     this.prefixName = prefixName;
     this.comment    = comment;
     this.updBy      = updBy;
     this.updDate    = updDate;
     this.creBy      = creBy;
     this.creDate    = creDate;
     this.updPgm     = updPgm;
     this.rowVersion = rowVersion;
     this.active     = active;
     this.language   = language;
     this.prefix     = prefix;
 }