public void TestAdoptionCustomerAddAdoptionCustomer()
        {
            // arrange
            IAdoptionCustomerManager adoptionCustomerManager = new AdoptionCustomerManager(_adoptionCustomerAccessor);

            var customer = new AdoptionCustomer
            {
                CustomerEmail  = "*****@*****.**",
                FirstName      = "Fake",
                LastName       = "Fake",
                PhoneNumber    = "1110002222",
                AddressLineOne = "Fake",
                AddressLineTwo = "Fake",
                City           = "Fake",
                State          = "Fake",
                Zipcode        = "Fake",
                Active         = true
            };

            // act
            int rows = _adoptionCustomerAccessor.InsertAdoptionCustomer(customer);

            // assert
            Assert.AreEqual(1, rows);
        }
 /// <summary>
 /// NAME: Austin Gee
 /// DATE: 4/28/2020
 /// CHECKED BY:
 ///
 /// Adds a customer to the database
 /// </summary>
 /// <remarks>
 /// UPDATED BY: NA
 /// UPDATE DATE: NA
 /// WHAT WAS CHANGED: NA
 ///
 /// </remarks>
 /// <param name="customer"></param>
 /// <returns></returns>
 public bool AddAdoptionCustomer(AdoptionCustomer customer)
 {
     try
     {
         return(1 == _adoptionCustomerAccessor.InsertAdoptionCustomer(customer));
     }
     catch (Exception ex)
     {
         throw new ApplicationException("Database Error", ex);
     }
 }