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

Get() public method

public Get ( string cellPhoneNumber ) : SecurityInformation
cellPhoneNumber string
return AutomatedCaseworker.Workflow.Models.SecurityInformation
        public SecurityInformation Get(string cellPhoneNumber)
        {
            var Case = caseRepository.GetLastByCellPhoneNumber(cellPhoneNumber);
            return new SecurityInformation(cellPhoneNumber, Case.SecurityInformation);
        }
SecurityInformationController