public void AddNewReservationTest()
        {
            // TODO: add unit test for the method 'AddNewReservation'
            CreateCustomerReservation value = null; // TODO: replace null with proper value
            var response = instance.AddNewReservation(value);

            Assert.IsInstanceOf <Reservation> (response, "response is Reservation");
        }
 public void Init()
 {
     instance = new CreateCustomerReservation();
 }