GetTeacherLookup() public method

Returns the teacher lookup data.
public GetTeacherLookup ( System.Guid accountId ) : List
accountId System.Guid The account identifier.
return List
        /// <summary>
        /// Returns the teacher lookup.
        /// </summary>
        /// <returns>The teacher lookup.</returns>
        public List<TeacherLookupDto> GetTeacherLookup()
        {
            this.SetResponseHeaderCacheExpiration();

            AccountPassword credentials = this.GetCredentialsFromRequest();
            AccountServerService accountService = new AccountServerService();
            Guid accountId = accountService.GetAccountId(credentials.Account);

            TeacherServerService service = new TeacherServerService();
            return service.GetTeacherLookup(accountId);
        }