public IActionResult OnGet(long id)
        {
            Categories = new SelectList(_categoryApplication.GetAllForSearch(), "Id", "Name");
            Model      = _articleApplication.GetDetailsForEdit(id);

            if (Model == null)
            {
                return(RedirectToPage("Index"));
            }

            return(Page());
        }