public void populatePublications()
        {
            pf = new PublicationFactory();

            var response = pf.getAll();

            mPublications = response;
        }
        public PublicationContainer()
        {
            pf = new PublicationFactory();
            var response = pf.getAll();

            mPublications = response;
            mRandom       = new Random();
        }