private void EditFileIfExists(string path)
        {
            StreamWriter sw             = File.CreateText(path);
            string       customerString = CustomerBuilder.GetCustomerDetails();

            Console.WriteLine(customerString);
            sw.WriteLine(customerString);
            sw.Dispose();
        }