BusinessLogic.Events.HandlerFactory.BusinessLogicEventSender.SendEvents C# (CSharp) Method

SendEvents() public method

public SendEvents ( IList events ) : void
events IList
return void
        public virtual void SendEvents(IList<IBusinessLogicEvent> events)
        {
            if (events.Any())
            {
                foreach (var @event in events)
                {
                    _eventBus.SendEvent(@event);
                }
            }
        }
    }