Artemis.ArtemisBootstrapper.GetInstance C# (CSharp) Method

GetInstance() protected method

protected GetInstance ( Type service, string key ) : object
service System.Type
key string
return object
        protected override object GetInstance(Type service, string key)
        {
            if (service == null)
                throw new ArgumentNullException(nameof(service));

            return _kernel.Get(service);
        }