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