/// <summary>
        /// Creator: Austin Gee
        /// Created: 4/27/2020
        /// Approver: Michael Thompson
        ///
        /// shows a customers scheduled appointments
        /// </summary>
        /// <remarks>
        ///
        /// Updater: NA
        /// Updated: NA
        /// Update: NA
        /// </remarks>
        /// <param name="email"></param>
        /// <returns></returns>

        public ActionResult CustomerAppointmentSchedule(string email)
        {
            var schedule = _adoptionAppointmentManager.RetrieveAdoptionAppointmentsByCustomerEmailAndActive(email);

            ViewBag.Title = "Appointment Schedule";
            return(View(schedule));
        }