Files
mROA/mROA/Implementation/Test/MockExecModule.cs
T

10 lines
317 B
C#

namespace mROA.Implementation;
public class MockExecModule : IExecuteModule
{
public ICommandExecution Execute(ICallRequest command)
{
return new FinalCommandExecution
{ CommandId = command.CommandId, Result = new { A = "wqer", B = 5 }, CallRequestId = command.CallRequestId };
}
}