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