public async Task ProcessAsync(ACPreFillProcessor processor, FormEntry formEntry)
 {
     _logger.LogWarning(
         "NullPreFillProcessor triggered for entry {formEntry}. Expected processor was [{processorType}]. Check for correct registration in ProcessorExtensions.cs",
         formEntry.Id,
         processor.ProcessorType.ToString());
     await Task.CompletedTask;
 }
Beispiel #2
0
 public Task ProcessAsync(ACPreFillProcessor processor, FormEntry formEntry)
 {
     throw new NotImplementedException();
 }