Esempio n. 1
0
        public IQueryable <ExamAttachment> RetrieveAllExamAttachments() =>
        TryCatch(() =>
        {
            IQueryable <ExamAttachment> storageExamAttachments =
                storageBroker.SelectAllExamAttachments();

            ValidateStorageExamAttachments(storageExamAttachments);

            return(storageExamAttachments);
        });
Esempio n. 2
0
 public IQueryable <ExamAttachment> RetrieveAllExamAttachments() =>
 TryCatch(() => storageBroker.SelectAllExamAttachments());