public ActionResult Delete(int pageAssociationId)
        {
            try
            {
                _associationService.Delete(pageAssociationId);

                return(Json(new { State = true }));
            }
            catch (Exception)
            {
                return(Json(new { State = false }));
            }
        }