Click here to Skip to main content
15,896,348 members
Articles / Programming Languages / C#

Dependency Injection and Windows Communication Foundation

Rate me:
Please Sign up or sign in to vote.
4.87/5 (10 votes)
7 Sep 2011CPOL5 min read 61K   1.2K   27  
This article shows an alternative approach to enable Dependency Injection when working with WCF services.
using System.ServiceModel;

namespace ServiceProxy.SampleServices
{
    [ServiceContract]
    public interface ISampleService
    {
        [OperationContract]
        int Calculate(int value1, int value2);
    }

    public class SampleService : ISampleService
    {
        public SampleService(ILogger logger)
        {
        }

        public int Calculate(int value1, int value2)
        {
            return value1 + value2;
        }
    }


    public interface ILogger
    {
        void Log(string message);
    }

    public class Logger : ILogger
    {
        public void Log(string message)
        {
            //Perform some logging
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Norway Norway
I'm a 39 year old software developer living in Norway.
I'm currently working for a software company making software for the retail industry.

Comments and Discussions