public GalleryApplicationsResult GetGalleryApplicationsFiltered(int packageId, string pattern)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryApplicationsFiltered(packageId, pattern));
 }
 public GalleryCategoriesResult GetGalleryCategories(int packageId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryCategories(packageId));
 }
 public void SetResourceLanguage(int packageId, string resourceLanguage)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     WebAppGalleryController.SetResourceLanguage(packageId, resourceLanguage);
 }
 public GalleryApplicationsResult GetInstaledApplications(int packageId, string categoryId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryApplications(packageId, categoryId));
 }
 public void InitFeeds(int packageId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
 }
 public GalleryWebAppStatus GetGalleryApplicationStatus(int packageId, string webAppId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryApplicationStatus(packageId, webAppId));
 }
 public StringResultObject Install(int packageId, string webAppId, string siteName, string virtualDir, List <DeploymentParameter> parameters, string languageId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.Install(packageId, webAppId, siteName, virtualDir, parameters, languageId));
 }
 public DeploymentParametersResult GetGalleryApplicationParams(int packageId, string applicationId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryApplicationParams(packageId, applicationId));
 }
 public GalleryApplicationResult GetGalleryApplicationDetails(int packageId, string applicationId)
 {
     WebAppGalleryController.InitFeeds(SecurityContext.User.UserId, packageId);
     return(WebAppGalleryController.GetGalleryApplicationDetails(packageId, applicationId));
 }