Exemplo n.º 1
0
 public CustomController(IOrderService orderService, ISaleRMAService saleRmaService, IRmaService rmaService,
                         IShippingSaleService shippingSaleService, IAccountService accountService)
 {
     _orderService        = orderService;
     _saleRmaService      = saleRmaService;
     _rmaService          = rmaService;
     _shippingSaleService = shippingSaleService;
     _accountService      = accountService;
 }
Exemplo n.º 2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="TransController" /> class.
 /// </summary>
 /// <param name="transService">The trans service.</param>
 public TransController(ITransService transService,
                        IEnumService enumService,
                        ISaleRMAService saleRmaService,
                        IRmaService rmaService,
                        IPaymentMethodRepository paymentMethodRepository,
                        ISalesOrderService saleOrderService,
                        IExpressService expressService,
                        IShippingSaleService shippingSaleService
                        )
 {
     _transService            = transService;
     _enumService             = enumService;
     _saleRmaService          = saleRmaService;
     _rmaService              = rmaService;
     _paymentMethodRepository = paymentMethodRepository;
     _saleOrderService        = saleOrderService;
     _expressService          = expressService;
     _shippingSaleService     = shippingSaleService;
 }
Exemplo n.º 3
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="OrderController" /> class.
 /// </summary>
 /// <param name="orderService">The order service.</param>
 public OrderController(IOrderService orderService, IRmaService rmaService)
 {
     _orderService = orderService;
     _rmaService   = rmaService;
 }
Exemplo n.º 4
0
 public RMAController(ISaleRMAService saleRmaService, IRmaService rmaService, IShippingSaleService shippingSaleService)
 {
     _saleRmaService      = saleRmaService;
     _rmaService          = rmaService;
     _shippingSaleService = shippingSaleService;
 }