public static ValueTask <TResult> ExecuteAsync <TService, TResult>( this GlobalServiceAccessor accessor, Func <TService, ValueTask <TResult> > action) => InternalGlobalService.ExecuteAsync(action);
public static ValueTask ExecuteAsync <TService>( this GlobalServiceAccessor accessor, Func <TService, ValueTask> action, bool ignoreNotPresent = false) => InternalGlobalService.ExecuteAsync(action, ignoreNotPresent);