public TransactionController(IWebHostEnvironment env, IDeliveryTypeService deliveryTypeService, ITransactionService transactionService, UserManager <ApplicationUser> userManager, ITransactionLinkService transactionLinkService, IFeeService feeService, IPaymentService paymentService) { this.deliveryTypeService = deliveryTypeService; this.transactionService = transactionService; this.userManager = userManager; this.env = env; this.transactionLinkService = transactionLinkService; this.feeService = feeService; this.paymentService = paymentService; }
public OrderController( UserService userService, OrderService orderService, PaymentMethodService paymentMethodService, DeliveryTypeService deliveryTypeService) { _userService = userService; _orderService = orderService; _paymentMethodService = paymentMethodService; _deliveryTypeService = deliveryTypeService; }
public OrderService(IOrderRepository orderRepository, IProductService productService, IPaymentMethodService paymentMethodService, IDeliveryTypeService deliveryTypeService, IUserService userService) { _orderRepository = orderRepository; _deliveryTypeService = deliveryTypeService; _paymentMethodService = paymentMethodService; _productService = productService; _userService = userService; }
public DeliveryTypeController(DeliveryTypeService deliveryTypeService) { _deliveryTypeService = deliveryTypeService; }
public DeliveryTypeAppService(IDeliveryTypeService deliveryTypeService) : base(deliveryTypeService) { _deliveryTypeService = deliveryTypeService; }
public DeliveryTypeController(IDeliveryTypeService deliveryTypeService) { this.deliveryTypeService = deliveryTypeService; }
public DeliveryTypeController(IDeliveryTypeService _iDeliveryTypeService, IAccountService _iAccountService) { iDeliveryTypeService = _iDeliveryTypeService; iAccountService = _iAccountService; }
public DeliveryTypesController(IDeliveryTypeService service) : base(service) { }