public void TestDecisionDetails()
        {
            IGenericRepository gens = new GenericRepository();

            IDecisionsRepository decisions = new DecisionsRepository();
            IList <Decision>     decs      = decisions.GetAllDecisionsPerParagraph(12);

            IList <DecisionDetails> details = UpdateUtils.GetDecisionDetails(decs);

            //   int j = recs.getAllRecommendationsByParagraph(12).Count;

            Assert.AreEqual(details.Count, decs.Count);
        }