Пример #1
0
 /// <summary>
 /// Initializes a new instance of the DbCountry class
 /// </summary>
 /// <param name="countryCode">Initial <see cref="DbCountry.CountryCode" /> value</param>
 /// <param name="comment">Initial <see cref="DbCountry.Comment" /> value</param>
 /// <param name="updBy">Initial <see cref="DbCountry.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="DbCountry.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="DbCountry.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="DbCountry.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="DbCountry.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="DbCountry.RowVersion" /> value</param>
 /// <param name="active">Initial <see cref="DbCountry.Active" /> value</param>
 /// <param name="zone">Initial <see cref="DbCountry.Zone" /> value</param>
 public DbCountry(string countryCode, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.DB.DTO.DbZone zone)
 {
     this.countryCode = countryCode;
     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.zone        = zone;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the DbZoneLang class
 /// </summary>
 /// <param name="zoneName">Initial <see cref="DbZoneLang.ZoneName" /> value</param>
 /// <param name="comment">Initial <see cref="DbZoneLang.Comment" /> value</param>
 /// <param name="updBy">Initial <see cref="DbZoneLang.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="DbZoneLang.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="DbZoneLang.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="DbZoneLang.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="DbZoneLang.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="DbZoneLang.RowVersion" /> value</param>
 /// <param name="active">Initial <see cref="DbZoneLang.Active" /> value</param>
 /// <param name="language">Initial <see cref="DbZoneLang.Language" /> value</param>
 /// <param name="zone">Initial <see cref="DbZoneLang.Zone" /> value</param>
 public DbZoneLang(string zoneName, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.DB.DTO.DbLanguage language, SS.DB.DTO.DbZone zone)
 {
     this.zoneName   = zoneName;
     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.zone       = zone;
 }