/src/SampleLibrary/AOP/SampleBootstrapComponent.cs
http://github.com/philiplaureano/LinFu · C# · 15 lines · 12 code · 3 blank · 0 comment · 0 complexity · 0e124e215c88a6faf8250afee93e0bd3 MD5 · raw file
- using LinFu.AOP.Interfaces;
- namespace SampleLibrary.AOP
- {
- public class SampleBootstrapComponent : IBootStrappedComponent
- {
- public bool Called { get; private set; }
- public void Initialize()
- {
- Called = true;
- }
- }
- }