document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. /**
  3.  *
  4.  * @author v.koroghlishvili
  5.  * CheckOut using Visa Electron
  6.  */
  7. public class VisaElectronRule  implements PaymentRule{
  8.  
  9.     @Override
  10.     public  void makePayment(String number) {
  11.         System.out.println("VISA ELECTRON "+number);
  12.     }
  13.  
  14. }
');