public LimitPaymentCodeController(ApplicationContext context, IHomePagingService pagingService, ILimitService limitService, IPaymentCodeService paymentCodeService, IValidationService validationService)
 {
     this.context            = context;
     this.pagingService      = pagingService;
     this.limitService       = limitService;
     this.paymentCodeService = paymentCodeService;
     this.validationService  = validationService;
 }
 public CrmPaymentCodeController(IPaymentCodeService paymentCodeService)
 {
     _paymentCodeService = paymentCodeService;
 }