public IEnumerable <UserDTO> GetBoardCollaborators(string boardId) { try { return(db_.GetBoardCollaborators(boardId)); } catch (Exception ex) { throw new Exception(ex.Message); } }