| 1234567891011121314151617181920 |
-
- 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; }
- }
- }
|