/src/SampleLibrary/IInjectionTarget.cs

http://github.com/philiplaureano/LinFu · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · ea180dc4c46243ee671b0dc56cca6af5 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SampleLibrary
  6. {
  7. public interface IInjectionTarget
  8. {
  9. void SetValue(object arg1);
  10. }
  11. }