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

Post() public method

public Post ( SecurityInformation securityInformation ) : void
securityInformation AutomatedCaseworker.Workflow.Models.SecurityInformation
return void
        public void Post(SecurityInformation securityInformation)
        {
            var Case = caseRepository.GetLastByCellPhoneNumber(securityInformation.CellPhoneNumber);
            caseRepository.UpdateSecurityInformation(Case.Id, securityInformation.SecurityInformationString);
        }
    }
SecurityInformationController