public override void Add(Customer customer)
 {
     if (_customerCheckService.CheckIfReal(customer))
     {
         Console.WriteLine(customer.FirstName + " " + customer.LastName + " Added");
     }
     else
     {
         throw new Exception("Not a Valid Exception");
     }
 }