示例#1
0
 public BillPayController(IBillPayService service)
 {
     this._service = service;
 }
示例#2
0
 public BillPayController(IHttpContextAccessor httpContextAccessor, IBillPayService billPayService)
 {
     _httpContextAccessor = httpContextAccessor;
     _billPayService      = billPayService;
 }