public async Task <HttpResponseMessage> AddMotorista(Motorista motorista)
        {
            HttpResponseMessage response = new HttpResponseMessage();

            try
            {
                await MotoristaDAO.AddMotoristaAsync(motorista);

                response.StatusCode = HttpStatusCode.OK;
            }
            catch (Exception ex)
            {
                response.Content    = new ObjectContent(typeof(Exception), ex, JsonConfig.DefaultJsonMediaType);
                response.StatusCode = HttpStatusCode.InternalServerError;
            }

            ApiLog(response.StatusCode);

            return(response);
        }