public string destroyObject()
 {
     myObj = null;
     return("Object can't be used anymore");
 }
 public string startClient()
 {
     myObj = new NotareObj();
     return("Object can be used now");
 }