public void AddTag(string componentUid, string tag)
 {
     _componentRegistryService.SetComponentTag(componentUid, tag);
 }
 public bool set_tag(string component_uid, string tag)
 {
     return(_componentRegistryService.SetComponentTag(component_uid, tag));
 }