public void UpdateExistingOuting_ShouldReturnTrue()
        {
            DateTime date1        = new DateTime(2020, 5, 17);
            Outings  updateOuting = new Outings(OutingType.Golf, 72, date1, 22);
            bool     updateResult = _repo.UpdateExistingOuting(OutingType.Golf, date1, updateOuting);

            Assert.IsTrue(updateResult);
        }