public CompleteOrderCommandHandler(IOrdersDAO ordersDao, ILog logger) : base(logger) { _ordersDao = ordersDao; }
public OrdersController(OrdersDAO ordersDao, IAmACommandProcessor commandProcessor) { _ordersDao = ordersDao; _commandProcessor = commandProcessor; }
public AddOrderCommandHandler(IOrdersDAO ordersDao, ILog logger, IAmACommandProcessor commandProcessor) : base(logger) { _ordersDao = ordersDao; _commandProcessor = commandProcessor; }
public OrdersService(IOrdersDAO ordersDAO, IPaymentsService paymentService) { this._ordersDao = ordersDAO; this._paymentService = paymentService; }
public OrderListModelRetriever(string hostName, IOrdersDAO ordersDao) { _hostName = hostName; _ordersDao = ordersDao; }
public OrdersController(OrdersDAO ordersDao) { _ordersDao = ordersDao; }
public OrderListModelRetriever (string hostName, IOrdersDAO ordersDao) { _hostName = hostName; _ordersDao = ordersDao; }
public OrdersBLO(IOrdersDAO _iOrdersDAO) { iOrdersDAO = _iOrdersDAO; }
public OrderService(IOrdersDAO ordersDAO) { orderDao = ordersDAO; }