public async Task <InvokeResult <LabelSet> > AddLabelAsync([FromBody] Label label)
 {
     return(await _labelManager.AddLabelAsync(label, OrgEntityHeader, UserEntityHeader));
 }
Ejemplo n.º 2
0
 public Task <InvokeResult> AddLabelAsync([FromBody] Label label)
 {
     return(_labelManager.AddLabelAsync(label, OrgEntityHeader, UserEntityHeader));
 }