AutomatedCaseworker.Workflow.Controllers.LocationInformationController.Post C# (CSharp) 메소드

Post() 공개 메소드

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