Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created February 14, 2020 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carloscds/952cba36cca6792052cfff182f5b077f to your computer and use it in GitHub Desktop.
Save carloscds/952cba36cca6792052cfff182f5b077f to your computer and use it in GitHub Desktop.
using System;
using Ninject;
namespace ExemploNInject
{
class Program
{
static void Main(string[] args)
{
Ninject.IKernel inject = new StandardKernel();
inject.Bind<IServico>().To<MeuServico>();
var obj = inject.Get<ExecutaDI>();
obj.Executa();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment