Beispiel #1
0
 public static List <int> GetBoardsForMember(int userId)
 {
     return(Sql.Populate <int>(
                "BoardMember_GetBoards", new { userId }
                ));
 }
Beispiel #2
0
 public static List <Models.Board> GetList(int userId)
 {
     return(Sql.Populate <Models.Board>(
                "Boards_GetList", new { userId }
                ));
 }