<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Real World Benefits From Loose Coupling, Inversion Of Control And Dependency Injection</title>
	<atom:link href="http://davybrion.com/blog/2009/12/real-world-benefits-from-loose-coupling-inversion-of-control-and-dependency-injection/feed/" rel="self" type="application/rss+xml" />
	<link>http://davybrion.com/blog/2009/12/real-world-benefits-from-loose-coupling-inversion-of-control-and-dependency-injection/</link>
	<description>Trying to walk that thin line between intelligence and ignorance</description>
	<lastBuildDate>Thu, 29 Jul 2010 21:01:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Aaron  Fischer</title>
		<link>http://davybrion.com/blog/2009/12/real-world-benefits-from-loose-coupling-inversion-of-control-and-dependency-injection/comment-page-1/#comment-23170</link>
		<dc:creator>Aaron  Fischer</dc:creator>
		<pubDate>Fri, 11 Dec 2009 17:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=2000#comment-23170</guid>
		<description>@Davy 
Your correct the new Keyword is needed in order to add the wcf attributes.

I don&#039;t mind so much it&#039;s an Interface, and this particular case these two interfaces are really the same.</description>
		<content:encoded><![CDATA[<p>@Davy<br />
Your correct the new Keyword is needed in order to add the wcf attributes.</p>
<p>I don&#8217;t mind so much it&#8217;s an Interface, and this particular case these two interfaces are really the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Davy Brion</title>
		<link>http://davybrion.com/blog/2009/12/real-world-benefits-from-loose-coupling-inversion-of-control-and-dependency-injection/comment-page-1/#comment-23148</link>
		<dc:creator>Davy Brion</dc:creator>
		<pubDate>Thu, 10 Dec 2009 19:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=2000#comment-23148</guid>
		<description>@Aaron

doesn&#039;t that mean you have to redefine the already existing methods from IRequestProcessor in IWcfRequestProcessor with the &#039;new&#039; keyword, just to be able to add the WCF attributes to them?

I haven&#039;t looked into the downsides of this because i tend to look for another solution whenever i feel like i need the &#039;new&#039; keyword in either a class or interface definition ;)</description>
		<content:encoded><![CDATA[<p>@Aaron</p>
<p>doesn&#8217;t that mean you have to redefine the already existing methods from IRequestProcessor in IWcfRequestProcessor with the &#8216;new&#8217; keyword, just to be able to add the WCF attributes to them?</p>
<p>I haven&#8217;t looked into the downsides of this because i tend to look for another solution whenever i feel like i need the &#8216;new&#8217; keyword in either a class or interface definition <img src='http://davybrion.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron  Fischer</title>
		<link>http://davybrion.com/blog/2009/12/real-world-benefits-from-loose-coupling-inversion-of-control-and-dependency-injection/comment-page-1/#comment-23147</link>
		<dc:creator>Aaron  Fischer</dc:creator>
		<pubDate>Thu, 10 Dec 2009 18:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=2000#comment-23147</guid>
		<description>I have found it helpful to define IWcfRequestProcessor as an extention of IRequestProcessors.

public interface IWcfRequestProcessor : IRequestProcessor

Now I can deal with IRequestProcessor, even if we are using wcf.</description>
		<content:encoded><![CDATA[<p>I have found it helpful to define IWcfRequestProcessor as an extention of IRequestProcessors.</p>
<p>public interface IWcfRequestProcessor : IRequestProcessor</p>
<p>Now I can deal with IRequestProcessor, even if we are using wcf.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Sonmez</title>
		<link>http://davybrion.com/blog/2009/12/real-world-benefits-from-loose-coupling-inversion-of-control-and-dependency-injection/comment-page-1/#comment-23146</link>
		<dc:creator>John Sonmez</dc:creator>
		<pubDate>Thu, 10 Dec 2009 14:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=2000#comment-23146</guid>
		<description>Nice concrete example of non-concrete concept.</description>
		<content:encoded><![CDATA[<p>Nice concrete example of non-concrete concept.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reflective Perspective - Chris Alcock &#187; The Morning Brew #495</title>
		<link>http://davybrion.com/blog/2009/12/real-world-benefits-from-loose-coupling-inversion-of-control-and-dependency-injection/comment-page-1/#comment-23144</link>
		<dc:creator>Reflective Perspective - Chris Alcock &#187; The Morning Brew #495</dc:creator>
		<pubDate>Thu, 10 Dec 2009 09:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://davybrion.com/blog/?p=2000#comment-23144</guid>
		<description>[...] Real World Benefits From Loose Coupling, Inversion Of Control And Dependency Injection - Davy Brion looks at some the real benefits of implemeing loosely coupled code using Dependency injection and Inversion of control, illustrating with an example of the benefit he realised with his Agatha Request Response Service Layer project [...]</description>
		<content:encoded><![CDATA[<p>[...] Real World Benefits From Loose Coupling, Inversion Of Control And Dependency Injection &#8211; Davy Brion looks at some the real benefits of implemeing loosely coupled code using Dependency injection and Inversion of control, illustrating with an example of the benefit he realised with his Agatha Request Response Service Layer project [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
