public HttpResponseMessage EditSingleLocation(LocationModel location)
        {
            var locationRepo           = new LocationsRepository();
            var editSingleLocationInfo = locationRepo.UpdateLocation(location);

            return(Request.CreateResponse(HttpStatusCode.OK, editSingleLocationInfo));
        }