Example #1
0
 /// <summary>
 /// Initializes a new instance of the DbDistrictLang class
 /// </summary>
 /// <param name="districtName">Initial <see cref="DbDistrictLang.DistrictName" /> value</param>
 /// <param name="comment">Initial <see cref="DbDistrictLang.Comment" /> value</param>
 /// <param name="updBy">Initial <see cref="DbDistrictLang.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="DbDistrictLang.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="DbDistrictLang.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="DbDistrictLang.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="DbDistrictLang.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="DbDistrictLang.RowVersion" /> value</param>
 /// <param name="active">Initial <see cref="DbDistrictLang.Active" /> value</param>
 /// <param name="language">Initial <see cref="DbDistrictLang.Language" /> value</param>
 /// <param name="district">Initial <see cref="DbDistrictLang.District" /> value</param>
 public DbDistrictLang(string districtName, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.DB.DTO.DbLanguage language, SS.DB.DTO.DbDistrict district)
 {
     this.districtName = districtName;
     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.district     = district;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the DbAddress class
 /// </summary>
 /// <param name="addressNumber">Initial <see cref="DbAddress.AddressNumber" /> value</param>
 /// <param name="road">Initial <see cref="DbAddress.Road" /> value</param>
 /// <param name="telephone">Initial <see cref="DbAddress.Telephone" /> value</param>
 /// <param name="fax">Initial <see cref="DbAddress.Fax" /> value</param>
 /// <param name="email">Initial <see cref="DbAddress.Email" /> value</param>
 /// <param name="map">Initial <see cref="DbAddress.Map" /> value</param>
 /// <param name="comment">Initial <see cref="DbAddress.Comment" /> value</param>
 /// <param name="updBy">Initial <see cref="DbAddress.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="DbAddress.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="DbAddress.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="DbAddress.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="DbAddress.UpdPgm" /> value</param>
 /// <param name="rowversion">Initial <see cref="DbAddress.Rowversion" /> value</param>
 /// <param name="active">Initial <see cref="DbAddress.Active" /> value</param>
 /// <param name="country">Initial <see cref="DbAddress.Country" /> value</param>
 /// <param name="province">Initial <see cref="DbAddress.Province" /> value</param>
 /// <param name="district">Initial <see cref="DbAddress.District" /> value</param>
 /// <param name="city">Initial <see cref="DbAddress.City" /> value</param>
 /// <param name="postal">Initial <see cref="DbAddress.Postal" /> value</param>
 public DbAddress(string addressNumber, string road, string telephone, string fax, string email, string map, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowversion, bool active, SS.DB.DTO.DbCountry country, SS.DB.DTO.DbProvince province, SS.DB.DTO.DbDistrict district, SS.DB.DTO.DbCity city, SS.DB.DTO.DbPostal postal)
 {
     this.addressNumber = addressNumber;
     this.road          = road;
     this.telephone     = telephone;
     this.fax           = fax;
     this.email         = email;
     this.map           = map;
     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.country       = country;
     this.province      = province;
     this.district      = district;
     this.city          = city;
     this.postal        = postal;
 }