/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

  1. namespace Rhino.Etl.Dsl.Macros
  2. {
  3. using Rhino.Etl.Core.Operations;
  4. /// <summary>
  5. /// Generate a class dervied from <see cref="AbstractOperation"/> with the
  6. /// required initialization
  7. /// </summary>
  8. public class OperationMacro : AbstractClassGeneratorMacro<AbstractOperation>
  9. {
  10. /// <summary>
  11. /// Initializes a new instance of the <see cref="OperationMacro"/> class.
  12. /// </summary>
  13. public OperationMacro() : base("Execute")
  14. {
  15. }
  16. }
  17. }