| 12345678910111213141516171819202122 |
-
- namespace Quadarax.Application.QLiberace.Common.Executor
- {
- public interface IParametricExecutorProvider
- {
- TimeSpan Timeout { get; }
- DateTime? Started { get; }
- DateTime? Finished { get; }
- bool Execute(IEnumerable<IParametricExecutorValue> values);
- }
- public interface IParametricExecutorValue
- {
- string Code { get;}
- string TypeQualifiedName { get; }
- string Value { get; }
- bool IsOutput { get; }
- }
- }
|