コード例 #1
0
ファイル: CountryToCurrency.cs プロジェクト: Corniel/Qowaiv
 public CountryToCurrency(Country country, Currency currency)
     : this(country, currency, Date.MinValue)
 {
 }
コード例 #2
0
ファイル: CountryToCurrency.cs プロジェクト: Corniel/Qowaiv
 public CountryToCurrency(Country country, Currency currency, Date startdate)
 {
     m_Country = country;
     m_Currency = currency;
     m_StartDate = startdate;
 }