public OrderingCommandService(IOrderingService orderingService, IKeyGenerationReportService keyGenerationReportService, IUnitOfWork unitOfWork, ICommandExecutor executor)
 {
   _orderingService = orderingService;
   _unitOfWork = unitOfWork;
   _executor = executor;
   _keyGenerationReportService = keyGenerationReportService;
   _userSession = new UserSession();
 }
 public OrderingCommandService(IOrderingService orderingService, IKeyGenerationReportService keyGenerationReportService, IUnitOfWork unitOfWork, ICommandExecutor executor)
 {
     _orderingService            = orderingService;
     _unitOfWork                 = unitOfWork;
     _executor                   = executor;
     _keyGenerationReportService = keyGenerationReportService;
     _userSession                = new UserSession();
 }