/src/SampleLibrary/IOC/SampleFactory.cs
http://github.com/philiplaureano/LinFu · C# · 14 lines · 13 code · 1 blank · 0 comment · 0 complexity · 62e0d6a85d84637e75e0e0a2ce2e5b3e MD5 · raw file
- using LinFu.IoC.Configuration;
- using LinFu.IoC.Interfaces;
- namespace SampleLibrary
- {
- [Factory(typeof(ISampleService))]
- public class SampleFactory : IFactory
- {
- public object CreateInstance(IFactoryRequest request)
- {
- return new SampleClass();
- }
- }
- }