/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

  1. using LinFu.AOP.Interfaces;
  2. namespace SampleLibrary.AOP
  3. {
  4. public class SampleBootstrapComponent : IBootStrappedComponent
  5. {
  6. public bool Called { get; private set; }
  7. public void Initialize()
  8. {
  9. Called = true;
  10. }
  11. }
  12. }