/src/SampleLibrary/AOP/SampleClassWithNewInstanceCall.cs
http://github.com/philiplaureano/LinFu · C# · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · aa7403d20fedc12aecb8d4f627d47f03 MD5 · raw file
- namespace SampleLibrary.AOP
- {
- public class SampleClassWithNewInstanceCall
- {
- public ISampleService DoSomething()
- {
- return new SampleServiceImplementation();
- }
- }
- }