Ejemplo n.º 1
0
        private void ConfigureInput(IEnumerable <Document> inputs)
        {
            if (inputs != null)
            {
                foreach (var input in inputs)
                {
                    switch (input.InputOperation)
                    {
                    case InputOperations.Read:
                        _bus.AddConsumer(input);
                        break;

                    case InputOperations.Request:
                        break;
                    }
                }
            }
        }