// GET: api/Dictionary paged list tests
        public IEnumerable <Dictionary> Get(int page, int count)
        {
            DictionaryRepository repository = (DictionaryRepository)_repository;

            return(repository.GetPagedList(x => x.IsDeleted.GetValueOrDefault(false) == false, page, count, people => people.People));
        }