/src/SampleLibrary/IOC/SamplePostProcessor.cs
http://github.com/philiplaureano/LinFu · C# · 14 lines · 12 code · 1 blank · 1 comment · 0 complexity · 2e261202db497b18984583e47daebf05 MD5 · raw file
- using LinFu.IoC.Configuration;
- using LinFu.IoC.Interfaces;
- namespace SampleLibrary
- {
- [PostProcessor]
- public class SamplePostProcessor : IPostProcessor
- {
- public void PostProcess(IServiceRequestResult result)
- {
- // Do nothing
- }
- }
- }