AutomatedCaseworker.Workflow.Controllers.LocationInformationController.Post C# (CSharp) Method

Post() public method

public Post ( LocationInformation locationInformation ) : void
locationInformation AutomatedCaseworker.Workflow.Models.LocationInformation
return void
        public void Post(LocationInformation locationInformation)
        {
            var Case = _caseRepository.GetLastByCellPhoneNumber(locationInformation.CellPhoneNumber);
            _caseRepository.UpdateLocationInformation(Case.Id, locationInformation.LocationInformationString);
        }
    }
LocationInformationController