public IActionResult Get(int id)
        {
            var result = _drawService.Get(id);

            return(Ok(_mapper.ToDTO(result)));
        }