/src/SampleLibrary/IOC/SampleClassWithSingleArgumentConstructor.cs
C# | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | 0925ad64ff29a924d77f9c77e6692558 MD5 | raw file
- namespace SampleLibrary.IOC
- {
- public class SampleClassWithSingleArgumentConstructor
- {
- public SampleClassWithSingleArgumentConstructor(ISampleService service)
- {
- Service = service;
- }
- public ISampleService Service { get; set; }
- }
- }