Esempio n. 1
0
        public override CqrsDataModel VisitDictionary([NotNull] CqrsParser.DictionaryContext context)
        {
            var projectVisitor = new ProjectModelVisitor(builder);

            var projects = context.projectAssignment().Select(a => projectVisitor.Visit(a));

            return(builder
                   .WithProjects(projects)
                   .Build());
        }