AutomatedCaseworker.Workflow.Controllers.SecurityInformationController.Get C# (CSharp) Méthode

Get() public méthode

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