20 public virtual Gross gross
30 public virtual string Name
40 public virtual int Value
44 if (this.gross ==
null)
48 return this.gross.Refresh();
58 if (this.list.Count <= 0)
72 if (this.list.Count <= 3)
83 this.lastDay = this.Value;
87 public void LogMonth()
89 this.list.Insert(0, this.Value);
90 if (this.list.Count >=
this.maxMonth)
92 this.list.RemoveAt(this.list.Count - 1);
98 public List<int> list =
new List<int>();