/src/SampleLibrary/AOP/SampleServiceImplementation.cs

http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · a7b6f84ea38638ba94d67f2bb5579433 MD5 · raw file

  1. using System;
  2. namespace SampleLibrary.AOP
  3. {
  4. public class SampleServiceImplementation : ISampleService
  5. {
  6. public void DoSomething()
  7. {
  8. throw new NotImplementedException();
  9. }
  10. }
  11. }