I have been reading Mark Seemann's excellent book on Dependency Injection & applying what I have been learning to StructureMap.
Often times I have multiple objects that implement the same interface. In the past I may have used an abstract factory to create the instance I needed at a given time based on some sort of key or identifier like so:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ScheduledEmailFactory | |
{ | |
public static IScheduledEmail Create(ScheduledEmailType scheduledEmailType) | |
{ | |
switch (scheduledEmailType) | |
{ | |
case ScheduledEmailType.WholesaleFirstLargeOrder: | |
return new WholesaleFirstLargeOrderScheduledEmail(); | |
case ScheduledEmailType.WholesaleNoOrdersAfterLargeOrder: | |
return new WholesaleNoOrdersAfterLargeOrderScheduledEmail(); | |
} | |
return null; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//IOC Configuration | |
x.For<IScheduledEmail>().HttpContextScoped().Use<WholesaleFirstLargeOrderScheduledEmail>().Named(string.Concat(ScheduledEmailTypeBase.Value, "1")); | |
x.For<IScheduledEmail>().HttpContextScoped().Use<WholesaleNoOrdersAfterLargeOrderScheduledEmail>().Named(string.Concat(ScheduledEmailTypeBase.Value, "2")); | |
//Factory Class | |
public class ScheduledEmailFactory : IScheduledEmailFactory | |
{ | |
private readonly IContainer _container; | |
public ScheduledEmailFactory(IContainer container) | |
{ | |
_container = container; | |
} | |
public IScheduledEmail Create(int scheduledEmailType) | |
{ | |
var key = string.Concat(ScheduledEmailTypeBase.Value, scheduledEmailType.ToString()); | |
var scheduledEmail = _container.GetInstance<IScheduledEmail>(key); | |
return scheduledEmail; | |
} | |
} |