public async Task <IActionResult> OnGetAsync(int?id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            CommonExample = await _repository.GetExampleByIdAsync(id);

            if (CommonExample == null)
            {
                return(NotFound());
            }
            return(Page());
        }