Пример #1
0
 public void AddReturn(
     MonthlyReturn r)
 {
     _monthlyReturns.Add(r);
 }
Пример #2
0
        // ** Equality

        protected bool Equals(MonthlyReturn other)
        {
            return(ReturnSeriesId == other.ReturnSeriesId && ReturnValue == other.ReturnValue && Equals(MonthYear, other.MonthYear));
        }