コード例 #1
0
ファイル: SupportService.cs プロジェクト: ckaeser/SocialGoal
 public IEnumerable <Support> GetSupporForGoal(int goalId)
 {
     return(_supportRepository.GetMany(s => s.GoalId == goalId).OrderByDescending(s => s.SupportedDate));
 }