public async Task ExecuteCommandAsync <TRequest>(ICommandAsync <TRequest> command, TRequest request)
        {
            logger.Log(command, request);

            await command.Execute(request);
        }
示例#2
0
 public async Task Invoker() => await startCommandAsync.Execute();