예제 #1
0
파일: Command.cs 프로젝트: aisyluG/OOP_labs
 public void execute(MyStorage _storage, int _ind)
 {
     storage = _storage;
     index   = _ind;
     storage.getObject(index).select();
     storage.notifyEveryone();
 }