예제 #1
0
파일: Pawnshop.cs 프로젝트: st411ar/sandbox
 private void ProcessPreparingToCell(AInstrument instrument)
 {
     instrument.Repair();
     instrument.Pack();
 }
예제 #2
0
파일: Pawnshop.cs 프로젝트: st411ar/sandbox
 public AInstrument PrepareToSell(AInstrument instrument)
 {
     ProcessPreparingToCell(instrument);
     return(instrument);
 }