コード例 #1
0
 public PostPaymentController()
 {
     postPaymentService = ServiceFactory.GetService <IPostPaymentService>();
 }
コード例 #2
0
 public PostPaymentController(IPostPaymentService testSvc)
 {
     postPaymentService = testSvc;
 }
コード例 #3
0
 public HomeController(IPostPaymentService service)
 {
     _service = service;
     _service.Register(this);
 }