Posts Tagged ‘SoC

The latest TLA (Three Letter Acronyms) du jour seem to be SoC, DI, and IoC.  What do these stand for and why should you care about them?
Consider the following (very) simple console application:

Code Snippet

using System;
 
namespace TightlyBoundTestApp
{
    public class Program
    {
        static void Main(string[] args)
        {
            // Load up a customer
            Customer c = new Customer();
 
            // Logging should have written a message
            c.Log();
 
            Console.ReadKey();
        }
    }
 
    public [...]


top