Exemplo n.º 1
0
 public ContentsController(
     HomeOwerUserManager homeOwerUserManager,
     TenantManager tenantManager,
     CommunityManager communityManager,
     AppManager appManager,
     ContentManager contentManager,
     ContentAppService contentAppService)
     : base(homeOwerUserManager)
 {
     _homeOwerUserManager = homeOwerUserManager;
     _tenantManager       = tenantManager;
     _communityManager    = communityManager;
     _appManager          = appManager;
     _contentManager      = contentManager;
     _contentServices     = contentAppService;
 }
Exemplo n.º 2
0
 public ContentController(IServiceProvider service)
 {
     RequestHelper = service.GetRequiredService <IAtlassReuqestHelper>();
     _contentApp   = service.GetRequiredService <ContentAppService>();
 }