예제 #1
0
 public string ValidateRemoveAllowance(Allowance allowance)
 {
     return this.Allowances.Contains(allowance) ? null : "Not an allowance of this claim";
 }
예제 #2
0
 public void RemoveAllowance(Allowance allowance)
 {
     this.Allowances.Remove(allowance);
     Container.DisposeInstance(allowance);
 }