Exemplo n.º 1
0
 public static TResult ExecuteSync <TService, TResult>(
     this GlobalServiceAccessor accessor,
     Func <TService, TResult> action) =>
 InternalGlobalService.ExecuteSync(action);
Exemplo n.º 2
0
 public static void ExecuteSync <TService>(
     this GlobalServiceAccessor accessor,
     Action <TService> action,
     bool ignoreNotPresent = false) =>
 InternalGlobalService.ExecuteSync(action, ignoreNotPresent);