コード例 #1
0
        public Price(RawPriceDayCache cache, long dateTime)
        {
            this.Cache    = cache;
            this.DateTime = dateTime;

            Init();
        }
コード例 #2
0
ファイル: CurrencyPair.cs プロジェクト: stackprobe/Fx
 public CurrencyPair(string currencyPair)
 {
     this.Code  = currencyPair;
     this.Cache = new RawPriceDayCache(currencyPair);
 }