/Rhino.Etl.Tests/Fibonacci/Batch/BatchFibonacciToDatabase.cs

http://github.com/ayende/rhino-etl · C# · 15 lines · 13 code · 2 blank · 0 comment · 0 complexity · 6287de5846f75ccd613f4d89c9baa457 MD5 · raw file

  1. using System.Configuration;
  2. namespace Rhino.Etl.Tests.Fibonacci.Batch
  3. {
  4. using System.Data.SqlClient;
  5. using Core;
  6. using Rhino.Etl.Core.Operations;
  7. public class BatchFibonacciToDatabase : BatchFibonacciToDatabaseBase
  8. {
  9. public BatchFibonacciToDatabase() : base("test")
  10. {
  11. }
  12. }
  13. }