コード例 #1
0
 public bool CanHold(Merchandise merchandise)
 {
     return(this.merchandise == null);
 }
コード例 #2
0
ファイル: Stockpile.cs プロジェクト: ddmills/kingfisher
 public bool CanAdd(Merchandise merchandise)
 {
     return(!reserved && this.merchandise == null);
 }