Skip to content

Instantly share code, notes, and snippets.

@kshyju
Created April 24, 2014 02:44
Show Gist options
  • Save kshyju/11239704 to your computer and use it in GitHub Desktop.
Save kshyju/11239704 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class Program
{
public static void Main()
{
IEnumerable<IDataLoader<T>> ss=new List<IDataLoader<T>>();
Console.WriteLine("Hello World");
}
}
public interface IDataLoader<T>
{
void CheckForFiles();
}
public class KPIDataLoader : IDataLoader<string>
{
public void CheckForFiles()
{
Console.WriteLine("Checking for KPI specific file and parsing to DTOS");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment