public ServiceServer(Service n, string topic)
 {
     //,Callback {
     this.n = n;
     n.ServiceServer(topic);
 }
 public ServiceClient(Service n, string topic, ulong typeId)
 {
     this.n = n;
     this.p = n.ServiceClient(topic,typeId);
     this.typeId = typeId;
 }