Thanks for the quick response but I'm not sure that I get it. How does that register the components as implementing their interface? I would like to be able to do something like container.Resolve<ICustomerDao>().
On Jan 15, 5:12 pm, Ayende Rahien <[email protected]> wrote: > AllTypes.FromAssembly(foo) .Where( delegate ) > > On Thu, Jan 15, 2009 at 6:07 PM, George Mauer <[email protected]> wrote: > > > I have two assemblies EDC2.DAL and EDC2 where EDC2.DaoInterfaces > > defines a bunch of interfaces for data access objects to objects in > > the EDC2.Domain namespace. These are all implemented by classes in > > EDC2.DAL. > > > So to give an example: > > > Assembly EDC2 > > Namespace EDC2.DaoInterfaces > > ICustomerDao > > IProductDao > > Assembly EDC2.DAL > > Namespace EDC2.DAL > > CustomerDao : ICustomerDao > > ProductDao : IProductDao > > I would like to use Windsor's fluent interface to register all > > interfaces in EDC2.DaoInterfaces as being implemented by their > > corresponding implementors in EDC2.DAL. > > > Can anyone tell me how to do this? > > > Crossposted on Stackoverflow if you want some rep: > > >http://stackoverflow.com/questions/448788/castle-windsor-fluent-inter... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Castle Project Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/castle-project-users?hl=en -~----------~----~----~----~------~----~------~--~---
