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