Hi,
We're upgrading our AspNetZero 6.2 to 10.3.0, using Angular with .Net Core 5.0.
Looking through the xxxAppServiceBase.cs in the .Application project, we know there was a TenantManager and UserManager, and it seemed like a great way to add additional Managers for other core arreas of the system, so we added other Managers for other parts of the system, eg,
public ProductManager ProductManager {get;set;}
Which had the definition of:
public class ProductManager : IDomainService { }
And this worked perfectly within AspNetZero 6.2.
However in 10.3.0, the Manager variables are all NULL and we're not able to get a reference. So if we call
ProductManager.someFunctionCall();
We cannot do this, because ProductManager is null.
Please advise on the changes required to support this.
Regards, Simon Dean