public StoriesController(IStoryRepository storyRepo,
                                 IReplyRepository replyRepo)
        {
            storyRepository = storyRepo;
            replyRepository = replyRepo;

            storyRepository.CreateTestData(3);
            replyRepository.CreateTestData(3);

            // Sort the stories by the first letter of the Header Property
            // in each story.
            // storyRepo.Stories.Sort((s1, s2) =>
            //							 s1.Header.Substring(0).CompareTo(
            //							 s2.Header.Substring(0)));
        }