示例#1
0
 public override ClientsAmount Add(ClientsAmount another)
 {
     return(new NovicesAmount(Value + another.Value));
 }
示例#2
0
 public virtual ClientsAmount Add(ClientsAmount another)
 {
     return(new ClientsAmount(Value + another.Value));
 }