public AnalysisBuilder SetFinancialAnalysis(IFinancialAnalysis value)
        {
            if (value != null)
            {
                _financialAnalysis = value;
            }

            return(this);
        }
Exemplo n.º 2
0
        public RegistryEntryBuilder SetFinancialAnalysis(IFinancialAnalysis financialAnalysis)
        {
            _financialAnalysis = financialAnalysis;

            return(this);
        }
Exemplo n.º 3
0
 public bool Equals(IFinancialAnalysis other) => other != null && PE == other.PE;