/// <summary> /// Gets the recent uploads by photo age. /// </summary> /// <param name="age">The age.</param> /// <returns></returns> public List <RecentUploads> GetRecentUploadsByPhotoAge(PhotoAge age) { return(RecentUploads.Where(o => o.Age == age).ToList()); }
/// <summary> /// Gets the recent uploads by photo age. /// </summary> /// <param name="age">The age.</param> /// <returns></returns> public List<RecentUploads> GetRecentUploadsByPhotoAge(PhotoAge age) { return RecentUploads.Where(o => o.Age == age).ToList(); }