/// <summary> /// Initializes a new instance of the DbCountryLang class /// </summary> /// <param name="countryName">Initial <see cref="DbCountryLang.CountryName" /> value</param> /// <param name="comment">Initial <see cref="DbCountryLang.Comment" /> value</param> /// <param name="updBy">Initial <see cref="DbCountryLang.UpdBy" /> value</param> /// <param name="updDate">Initial <see cref="DbCountryLang.UpdDate" /> value</param> /// <param name="creBy">Initial <see cref="DbCountryLang.CreBy" /> value</param> /// <param name="creDate">Initial <see cref="DbCountryLang.CreDate" /> value</param> /// <param name="updPgm">Initial <see cref="DbCountryLang.UpdPgm" /> value</param> /// <param name="rowVersion">Initial <see cref="DbCountryLang.RowVersion" /> value</param> /// <param name="active">Initial <see cref="DbCountryLang.Active" /> value</param> /// <param name="language">Initial <see cref="DbCountryLang.Language" /> value</param> /// <param name="country">Initial <see cref="DbCountryLang.Country" /> value</param> public DbCountryLang(string countryName, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.DB.DTO.DbLanguage language, SS.DB.DTO.DbCountry country) { this.countryName = countryName; 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.country = country; }
/// <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; }