Skip to content

Instantly share code, notes, and snippets.

View LeeCheneler's full-sized avatar

Lee Cheneler LeeCheneler

  • Enzyme Software
  • UK
  • 13:23 (UTC +01:00)
View GitHub Profile
@LeeCheneler
LeeCheneler / Ninject.Http.cs
Created October 10, 2016 20:47 — forked from odytrice/Ninject.Http.cs
A small Library to configure Ninject (A Dependency Injection Library) with a WebAPI Application.
using Ninject.Modules;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Web;
using System.Web.Http;
using System.Web.Http.Dependencies;
// A small Library to configure Ninject (A Dependency Injection Library) with a WebAPI Application.
@LeeCheneler
LeeCheneler / Ninject.Mvc.cs
Created October 10, 2016 20:48 — forked from odytrice/Ninject.Mvc.cs
A small Library to configure Ninject (A Dependency Injection Library) with an ASP.NET Application.
using Ninject;
using Ninject.Modules;
using Ninject.Web.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Web;
using System.Web.Mvc;