public async Task <ObjectResult> Open([FromBody] DrawRequest request)
        {
            IEnumerable <OpenDraw> response = null;

            try
            {
                // If the basic request has not been supplied properly, exit straight away
                if (!request.IsValid())
                {
                    return(BadRequestResult());
                }

                response = await _lottoDrawService.GetOpenDraws(request);
            }
            catch (InvalidDataException ide)
            {
                return(BadRequest($"Invalid Request: {ide.Message}"));
            }
            catch (Exception ex) // In the case of an internal server error, return a general 500 (generally would log this).
            {
                Console.WriteLine(ex.Message);
                return(StatusCode(500, response));
            }

            return(new OkObjectResult(response));
        }