This is my application service. I'm i've included the follwing repositories.
public class GroupAppService : IGroupAppService
{
private readonly IGroupRepository _groupRepository;
private readonly UserManager _userManager;
public IAbpSession AbpSession { get; set; }
private IGroupQuizRepository _groupQuizRepository { get; set; }
private IGroupAssignmentRepository _groupAssignmentRepository { get; set; }
Everything works fine until I include
private IPostRepository _groupSocialRepository;
Now whenever I make a call to this application service from dynamic api, the ioc container fails to initialize ALL of the repoistories. everything is null. Urgent help please i've spent a lot of time trying to fix it.
Proxy services appear when I browse "/api/AbpServiceProxies/GetAll?type=angular" and they are correct. However appSession.js gives this error.
[attachment=1:kkgdg6kt]error.JPG[/attachment:kkgdg6kt]
Here is the object in debug mode. [attachment=0:kkgdg6kt]object.JPG[/attachment:kkgdg6kt]
Hello,
I am trying to implement a site where individual users sign up on the site and choose editions for purchase. One way to implement is to create a tenant for each user, but that seems like a poor approach. Is there a better way to use ABP to manage features and editions on user basis?