Ejemplo n.º 1
0
        public string AddMat(DynamicTableEntity entity)
        {
            string hp = PaperStore.ActionToHtmlPresentation(entity);

            lock (this.builder)
                this.builder.AppendLine(hp);

            fishSetting(entity);

            return(hp);
        }
Ejemplo n.º 2
0
        public PaperRoll(string vote_id)
        {
            this.VoteId = vote_id;

            PaperStore.GetAllActions(vote_id, entity =>
            {
                string hp = PaperStore.ActionToHtmlPresentation(entity);
                this.builder.AppendLine(hp);

                fishSetting(entity);
            });
        }