//Automatically sets a draw up according to specifications is DrawCreationDTO.
        public IActionResult PostAutomaticCreation(DrawCreationDTO dto)
        {
            var drawCreation = _mapper.FromCreationDTO(dto);
            var result       = _drawService.CreateAutomatic(drawCreation);

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