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