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