10 lines
302 B
C#
10 lines
302 B
C#
using mROA.Implementation;
|
|
|
|
namespace mROA.Abstract
|
|
{
|
|
public interface IExecuteModule : IInjectableModule
|
|
{
|
|
ICommandExecution Execute(ICallRequest command, IInstanceRepository instanceRepository,
|
|
IRepresentationModule representationModule, IEndPointContext context);
|
|
}
|
|
} |