public IActionResult Get(Guid id)
        {
            var dto = _service.Get(id);

            return(Json(dto));
        }