Example #1
0
 public PaymentDetailsController(IPaymentDetailService paymentDetailService)
 {
     _paymentDetailService = paymentDetailService;
 }
Example #2
0
 public HomeController(IProductService productService, IPaymentDetailService paymentDetailService, IOrderService orderService)
 {
     _productService       = productService;
     _paymentDetailService = paymentDetailService;
     _orderService         = orderService;
 }
 public PaymentController(IMapper mapper, IPaymentDetailService payment)
 {
     this.mapper  = mapper;
     this.payment = payment;
 }
Example #4
0
 public OrderService(IOrderRepository orderRepository, IProductService productService, IPaymentDetailService paymentDetailService)
 {
     _orderRepository      = orderRepository ?? new OrderDataRepository();
     _productService       = productService;
     _paymentDetailService = paymentDetailService;
 }
Example #5
0
 public PaymentDetailController(IPaymentDetailService service)
 {
     _service = service;
 }