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;
 }
Esempio n. 3
0
 public OrderService(IOrderRepository orderRepository,
                     IProductService productService,
                     IPaymentMethodService paymentMethodService,
                     IDeliveryTypeService deliveryTypeService,
                     IUserService userService)
 {
     _orderRepository      = orderRepository;
     _deliveryTypeService  = deliveryTypeService;
     _paymentMethodService = paymentMethodService;
     _productService       = productService;
     _userService          = userService;
 }
Esempio n. 4
0
 public DeliveryTypeController(DeliveryTypeService deliveryTypeService)
 {
     _deliveryTypeService = deliveryTypeService;
 }
Esempio n. 5
0
 public DeliveryTypeAppService(IDeliveryTypeService deliveryTypeService) : base(deliveryTypeService)
 {
     _deliveryTypeService = deliveryTypeService;
 }
 public DeliveryTypeController(IDeliveryTypeService deliveryTypeService)
 {
     this.deliveryTypeService = deliveryTypeService;
 }
Esempio n. 7
0
 public DeliveryTypeController(IDeliveryTypeService _iDeliveryTypeService, IAccountService _iAccountService)
 {
     iDeliveryTypeService = _iDeliveryTypeService;
     iAccountService      = _iAccountService;
 }
 public DeliveryTypesController(IDeliveryTypeService service) : base(service)
 {
 }