/Rhino.Etl.Tests/Errors/ErrorsProcess.cs
http://github.com/ayende/rhino-etl · C# · 14 lines · 12 code · 2 blank · 0 comment · 0 complexity · e1a0e16795bd3c358b4e186f9c43fc94 MD5 · raw file
- namespace Rhino.Etl.Tests.Errors
- {
- using Core;
- public class ErrorsProcess : EtlProcess
- {
- public readonly ThrowingOperation ThrowOperation = new ThrowingOperation();
- protected override void Initialize()
- {
- Register(ThrowOperation);
- }
- }
- }