/Rhino.Etl.Dsl/Macros/OperationMacro.cs
http://github.com/ayende/rhino-etl · C# · 18 lines · 10 code · 1 blank · 7 comment · 0 complexity · e1ac391c08039a78d0591fcf8d148e0d MD5 · raw file
- namespace Rhino.Etl.Dsl.Macros
- {
- using Rhino.Etl.Core.Operations;
- /// <summary>
- /// Generate a class dervied from <see cref="AbstractOperation"/> with the
- /// required initialization
- /// </summary>
- public class OperationMacro : AbstractClassGeneratorMacro<AbstractOperation>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="OperationMacro"/> class.
- /// </summary>
- public OperationMacro() : base("Execute")
- {
- }
- }
- }