/src/SampleLibrary/IOC/SampleClass.cs
http://github.com/philiplaureano/LinFu · C# · 15 lines · 12 code · 3 blank · 0 comment · 0 complexity · b0ac5a89775991181d612f25db3b8e20 MD5 · raw file
- using System;
- namespace SampleLibrary
- {
- public class SampleClass : ISampleService, ISampleGenericService<int>
- {
- public bool Called { get; set; }
- public void DoSomething()
- {
- throw new NotImplementedException();
- }
- }
- }