public OrderingHistoryCommandService(IOrderingHistoryService orderingHistoryService, IUnitOfWork unitOfWork, ICommandExecutor executor)
 {
   _orderingHistoryService = orderingHistoryService;
   _unitOfWork = unitOfWork;
   _executor = executor;
   _userSession = new UserSession();
 }
예제 #2
0
 public OrderingHistoryCommandService(IOrderingHistoryService orderingHistoryService, IUnitOfWork unitOfWork, ICommandExecutor executor)
 {
     _orderingHistoryService = orderingHistoryService;
     _unitOfWork             = unitOfWork;
     _executor    = executor;
     _userSession = new UserSession();
 }
 public OrderingHistoryReportService(ICommandExecutor executor, IOrderingHistoryService orderingHistoryService)
 {
     _executor = executor;
     _orderingHistoryService = orderingHistoryService;
     _userSession            = new UserSession();
 }
 public OrderingHistoryReportService(ICommandExecutor executor, IOrderingHistoryService orderingHistoryService)
 {
   _executor = executor;
   _orderingHistoryService = orderingHistoryService;
   _userSession = new UserSession();
 }