public IEnumerable<CardView> SearchCards(SearchOptions options)
		{
			//for now just pass through the Card Search
			return _api.SearchCards(_board.Id, options);
		}
		public IEnumerable<CardView> SearchCards(long boardId, SearchOptions options)
		{
			var resource = "/Kanban/Api/Board/" + boardId + "/SearchCards";
			return _restCommandProcessor.Post<PaginationResult<CardView>>(_accountAuth, resource, options).Results;
		}