public FindPaymentController(IFindPaymentService testSvc)
 {
     findPaymentService = testSvc;
 }
 public FindPaymentController()
 {
     findPaymentService = ServiceFactory.GetService <IFindPaymentService>();
 }