public void AddGetList_Test()
        {
            //Arrange
            Outing     outing      = new Outing();
            Outing     outingTwo   = new Outing(Event.Concert, 10, DateTime.Now, 20, 2000);
            Outing     outingThree = new Outing(Event.Golf, 2, DateTime.Now, 10, 200);
            OutingRepo repo        = new OutingRepo();

            //Act
            repo.AddOuting(outing);
            repo.AddOuting(outingTwo);
            repo.AddOuting(outingThree);

            int actual   = repo.GetOutings().Count();
            int expected = 3;

            //Assert
            Assert.AreEqual(actual, expected);
        }