示例#1
0
文件: Score.cs 项目: elbandit/PPPDDD
 public Score Subtract(Score amount)
 {
     return new Score(this.Value - amount.Value);
 }
示例#2
0
文件: Score.cs 项目: elbandit/PPPDDD
 public Score Add(Score amount)
 {
     return new Score(this.Value + amount.Value);
 }