Bzs.Server.CloudServices.AppService.GetSubjectLookup C# (CSharp) Метод

GetSubjectLookup() публичный Метод

Returns the subject lookup.
public GetSubjectLookup ( ) : List
Результат List
        public List<SubjectLookupDto> GetSubjectLookup()
        {
            this.SetResponseHeaderCacheExpiration();

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

            SubjectServerService service = new SubjectServerService();
            return service.GetSubjectLookup(accountId);
        }