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

Get() public method

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