I have a Azure Web Job Project that I've added the the NopCommerce solution.  Within this project I'm trying to resolve the ProductService as well as the UrlRecordService.  Below is a snippet. I get the error "SimpleInjector.ActivationException: no registration for type Products could be found and an implicit registration could not be made. Value cannot be null". I get this error when doing the EngineContect.Initialize. Before I even get to resolving the individual Services. Any Ideas?

EngineContext.Initialize(true);
_productService = EngineContext.Current.Resolve<IProductService>();
_urlRecordService = EngineContext.Current.Resolve<IUrlRecordService>();