public AdminMediaContentController(
     IAdminMediaContentService adminContentService,
     IMediaCategoryService categoryService,
     IMediaCollectionService collectionService)
 {
     this.adminContentService = adminContentService;
     this.categoryService = categoryService;
     this.collectionService = collectionService;
 }
 public ModeratorMediaContentController(
     IMediaContentService contentService,
     IMediaCategoryService categoryService,
     IMediaCollectionService collectionService)
 {
     this.contentService = contentService;
     this.categoryService = categoryService;
     this.collectionService = collectionService;
 }
 public ModeratorMediaCollectionController(IMediaCollectionService categoryService)
 {
     this.categoryService = categoryService;
 }