コード例 #1
0
ファイル: RevisionController.cs プロジェクト: hudl/black-mesa
 public ActionResult GetAllHistory()
 {
     var historyRepo = new HistoryRepository();
     return JsonNet(new Histories()
     {
         Items = historyRepo.GetAllHistory()
     });
 }