PageRenderTime 32ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/src/SampleLibrary/IOC/SampleClassWithSingleArgumentConstructor.cs

http://github.com/philiplaureano/LinFu
C# | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | 0925ad64ff29a924d77f9c77e6692558 MD5 | raw file
  1. namespace SampleLibrary.IOC
  2. {
  3. public class SampleClassWithSingleArgumentConstructor
  4. {
  5. public SampleClassWithSingleArgumentConstructor(ISampleService service)
  6. {
  7. Service = service;
  8. }
  9. public ISampleService Service { get; set; }
  10. }
  11. }