/src/SampleLibrary/IOC/ISampleServiceOfT.cs

http://github.com/philiplaureano/LinFu · C# · 9 lines · 9 code · 0 blank · 0 comment · 0 complexity · 0fb0face692f75e60d266f52b1983e25 MD5 · raw file

  1. namespace SampleLibrary.IOC
  2. {
  3. public interface ISampleService<T>
  4. {
  5. int Int { get; }
  6. string Text { get; }
  7. bool Bool { get; }
  8. }
  9. }