public IPaperDesigner <THost> CreatePaperBuilder <THost>(PaperInfo info, Func <IPaperContext, THost> hostFactory)
        {
            var builder = new PaperDesigner <THost>(info, hostFactory);

            return(builder);
        }
Example #2
0
 public PaperDesigner(PaperInfo info, Func <IPaperContext, THost> hostFactory)
 {
     this.info        = info;
     this.hostFactory = hostFactory;
 }
Example #3
0
 public PaperBlueprint(PaperInfo info)
 {
     this.Info = info;
 }