Hello, we have some services added to NopCommerce, which uses the CustomerManager functionality like AddCustomer(). To test the function we added a Console project which uses this services.
One argument is a NopContext.Current.WorkingLanguage.LanguageId, which is null. I know that a console application has no ASP.NET Context, for that we have used the StaticObjectContextManager.

   ObjectContextManager = new StaticObjectContextManager<NopObjectContext>();


I used this code for testing the code, but in this case the context was null. can you help me?