示例#1
0
 public SubtotalVisitor(string path, IFundFormatter formatter, bool hideContent)
 {
     m_Path        = path;
     m_Formatter   = formatter;
     m_HideContent = hideContent;
 }
示例#2
0
 public CurrencyDecorator(IFundFormatter fmt, string curr, double exgRatio) : base(fmt)
 {
     m_Curr     = curr;
     m_ExgRatio = exgRatio;
 }
示例#3
0
 public RatioDecorator(IFundFormatter fmt, double ratio) : base(fmt) => m_Ratio = ratio;
示例#4
0
 protected BaseFundFormatterDecorator(IFundFormatter fmt) => Internal = fmt;