/src/SampleLibrary/IOC/SamplePreprocessor.cs
http://github.com/philiplaureano/LinFu · C# · 14 lines · 12 code · 1 blank · 1 comment · 0 complexity · 75d6164c8a833e015c47e89c9bba7856 MD5 · raw file
- using LinFu.IoC.Configuration;
- using LinFu.IoC.Interfaces;
- namespace SampleLibrary.IOC
- {
- [Preprocessor]
- public class SamplePreprocessor : IPreProcessor
- {
- public void Preprocess(IServiceRequest result)
- {
- // Do nothing
- }
- }
- }