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

Get() public method

public Get ( string cellPhoneNumber ) : LocationInformation
cellPhoneNumber string
return AutomatedCaseworker.Workflow.Models.LocationInformation
        public LocationInformation Get(string cellPhoneNumber)
        {
            var Case =_caseRepository.GetLastByCellPhoneNumber(cellPhoneNumber);
            return new LocationInformation(cellPhoneNumber, Case.LocationInformation);
        }
LocationInformationController