public async Task <IActionResult> Get(long id)
        {
            var s = await _Service.GetComByParentIdAsync(id);

            return(new JsonResult(new { s = s }));
        }