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