/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

  1. namespace SampleLibrary.AOP
  2. {
  3. public class SampleClassWithNewInstanceCall
  4. {
  5. public ISampleService DoSomething()
  6. {
  7. return new SampleServiceImplementation();
  8. }
  9. }
  10. }