예제 #1
0
 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;
 }
예제 #4
0
 public OrdersService(IOrdersDAO ordersDAO, IPaymentsService paymentService)
 {
     this._ordersDao      = ordersDAO;
     this._paymentService = paymentService;
 }
 public OrderListModelRetriever(string hostName, IOrdersDAO ordersDao)
 {
     _hostName  = hostName;
     _ordersDao = ordersDao;
 }
예제 #6
0
 public OrdersController(OrdersDAO ordersDao)
 {
     _ordersDao = ordersDao;
 }
예제 #7
0
 public OrdersController(OrdersDAO ordersDao, IAmACommandProcessor commandProcessor)
 {
     _ordersDao        = ordersDao;
     _commandProcessor = commandProcessor;
 }
 public OrdersController(OrdersDAO ordersDao)
 {
     _ordersDao = ordersDao;
 }
 public OrderListModelRetriever (string hostName, IOrdersDAO ordersDao)
 {
     _hostName = hostName;
     _ordersDao = ordersDao;
 }
예제 #10
0
 public OrdersBLO(IOrdersDAO _iOrdersDAO)
 {
     iOrdersDAO = _iOrdersDAO;
 }
 public OrderService(IOrdersDAO ordersDAO)
 {
     orderDao = ordersDAO;
 }