//POST: /LocationInformation/{CellPhoneNumber, LocationInformation}
 public void Post(LocationInformation locationInformation)
 {
     var Case = _caseRepository.GetLastByCellPhoneNumber(locationInformation.CellPhoneNumber);
     _caseRepository.UpdateLocationInformation(Case.Id, locationInformation.LocationInformationString);
 }