示例#1
0
 public OrderingDetailCommandService(IOrderingDetailService orderingDetailService, IKeyGenerationReportService keyGenerationReportService, IUnitOfWork unitOfWork, ICommandExecutor executor)
 {
   _orderingDetailService = orderingDetailService;
   _keyGenerationReportService = keyGenerationReportService;
   _unitOfWork = unitOfWork;
   _executor = executor;
   _userSession = new UserSession();
 }
 public OrderingDetailReportService(ICommandExecutor executor, IOrderingDetailService orderingDetailService)
 {
   _executor = executor;
   _orderingDetailService = orderingDetailService;
   _userSession = new UserSession();
 }
示例#3
0
 public OrderingDetailReportService(ICommandExecutor executor, IOrderingDetailService orderingDetailService)
 {
     _executor = executor;
     _orderingDetailService = orderingDetailService;
     _userSession           = new UserSession();
 }