public IActionResult AddPagesToCatalog(CatalogPages catalogPages) { var catalogId = catalogPages.CatalogId; var pageId = catalogPages.PageId; _catalogRepository.AddPageToCatalog(catalogId, pageId); return(View()); }
public IActionResult RemovePagesFromCatalog(CatalogPages catalogPages) { var catalogId = catalogPages.CatalogId; var pageId = catalogPages.PageId; _catalogRepository.RemovePageFromCatalog(catalogId, pageId); return(View()); }