public SaveItemInteractor(
     IStarRepositoryGateway entityGateway,
     IStarBusinessEntity starBl)
 {
     this.EntityGateway         = entityGateway;
     this.StarItemBusinessLogic = starBl;
     this.OutputBoundary        = new NoOutputBoundary();
 }
 void ISaveStarItemInputPort.BindOutputBoundary(IStarItemSavedOutputPort outputPort)
 {
     this.OutputBoundary = outputPort;
 }