Пример #1
0
 public CollectionInnerContentHandler(IListContentsSpecification specification, IReader item,
                                      ICollectionContentsHandler handler)
 {
     _specification = specification;
     _item          = item;
     _handler       = handler;
 }
Пример #2
0
 public InnerContentServices(IListContentsSpecification specification, IInnerContentActivation activation,
                             IAlteration <IInnerContentHandler> handler, IInnerContentResult results, IMemberHandler member,
                             ICollectionContentsHandler collection, IReaderFormatter formatter)
 {
     _specification = specification;
     _activation    = activation;
     _handler       = handler;
     _results       = results;
     _member        = member;
     _collection    = collection;
     _formatter     = formatter;
 }
 public CollectionWithMembersInnerContentHandler(IListContentsSpecification specification, MemberInnerContentHandler members,
                                                 CollectionInnerContentHandler collection)
     : base(collection.If(specification).Let(members, Empty))
 {
 }