/// <summary> /// Initializes a new instance of the DbCurrencyLang class /// </summary> /// <param name="description">Initial <see cref="DbCurrencyLang.Description" /> value</param> /// <param name="comment">Initial <see cref="DbCurrencyLang.Comment" /> value</param> /// <param name="updBy">Initial <see cref="DbCurrencyLang.UpdBy" /> value</param> /// <param name="updDate">Initial <see cref="DbCurrencyLang.UpdDate" /> value</param> /// <param name="creBy">Initial <see cref="DbCurrencyLang.CreBy" /> value</param> /// <param name="creDate">Initial <see cref="DbCurrencyLang.CreDate" /> value</param> /// <param name="updPgm">Initial <see cref="DbCurrencyLang.UpdPgm" /> value</param> /// <param name="rowversion">Initial <see cref="DbCurrencyLang.Rowversion" /> value</param> /// <param name="active">Initial <see cref="DbCurrencyLang.Active" /> value</param> /// <param name="currency">Initial <see cref="DbCurrencyLang.Currency" /> value</param> /// <param name="language">Initial <see cref="DbCurrencyLang.Language" /> value</param> public DbCurrencyLang(string description, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, byte[] rowversion, bool active, SS.DB.DTO.DbCurrency currency, SS.DB.DTO.DbLanguage language) { this.description = description; 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.currency = currency; this.language = language; }
/// <summary> /// Initializes a new instance of the DbExchangeRate class /// </summary> /// <param name="fromDate">Initial <see cref="DbExchangeRate.FromDate" /> value</param> /// <param name="toDate">Initial <see cref="DbExchangeRate.ToDate" /> value</param> /// <param name="buyRate">Initial <see cref="DbExchangeRate.BuyRate" /> value</param> /// <param name="sellRate">Initial <see cref="DbExchangeRate.SellRate" /> value</param> /// <param name="comment">Initial <see cref="DbExchangeRate.Comment" /> value</param> /// <param name="updBy">Initial <see cref="DbExchangeRate.UpdBy" /> value</param> /// <param name="updDate">Initial <see cref="DbExchangeRate.UpdDate" /> value</param> /// <param name="creBy">Initial <see cref="DbExchangeRate.CreBy" /> value</param> /// <param name="creDate">Initial <see cref="DbExchangeRate.CreDate" /> value</param> /// <param name="updPgm">Initial <see cref="DbExchangeRate.UpdPgm" /> value</param> /// <param name="rowVersion">Initial <see cref="DbExchangeRate.RowVersion" /> value</param> /// <param name="active">Initial <see cref="DbExchangeRate.Active" /> value</param> /// <param name="currency">Initial <see cref="DbExchangeRate.Currency" /> value</param> public DbExchangeRate(DateTime fromDate, DateTime toDate, Single buyRate, Single sellRate, string comment, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SS.DB.DTO.DbCurrency currency) { this.fromDate = fromDate; this.toDate = toDate; this.buyRate = buyRate; this.sellRate = sellRate; 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.currency = currency; }