public void DeleteTag(string componentUid, string tag)
 {
     _componentRegistryService.RemoveComponentTag(componentUid, tag);
 }
 public bool remove_tag(string component_uid, string tag)
 {
     return(_componentRegistryService.RemoveComponentTag(component_uid, tag));
 }