Пример #1
0
        public void UpdateVM(string isin, FORTS_VM_REPL.fut_vm vm)
        {
            ExecuteWindowsUpdate(
                new Action(() =>
            {
                //for catch noisy error !
                try
                {
                    VM.UpdateWithId(new VMInst(isin, vm));
                }
                catch (Exception e)
                {
                    Error("UpdateVM", e);
                }
            }

                           ));
        }
Пример #2
0
 public VMInst(string isin, FORTS_VM_REPL.fut_vm inp)
 {
     Id = isin;
     Vm = inp.vm;
 }