public ValueTask <CourseAttachment> AddCourseAttachmentAsync(CourseAttachment courseAttachment) => TryCatch(async() => { ValidateCourseAttachmentOnAdd(courseAttachment); return(await storageBroker.InsertCourseAttachmentAsync(courseAttachment)); });