Esempio n. 1
0
 //Acknowledge successful annotations
 public async Task AnnotateField(long fieldId, Annotation annotation)
 {
     if (await _FieldService.AnnotateField(fieldId, annotation))
     {
         //Fire and forget ack
         _AckFunc?.Invoke(fieldId, annotation);
     }
 }