/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
- using System;
- namespace SampleLibrary.AOP
- {
- public class SampleServiceImplementation : ISampleService
- {
- public void DoSomething()
- {
- throw new NotImplementedException();
- }
- }
- }