示例#1
0
        public Cells.OutputCell ToOutputCell()
        {
            var cell = new Cells.OutputCell()
            {
                Id          = this.Id,
                Content     = this.Content,
                Location    = this.Location,
                SifLocation = this.SifLocation
            };

            return(cell);
        }
示例#2
0
文件: Cell.cs 项目: krauswg/SIFEI
 public Cells.OutputCell ToOutputCell()
 {
     var cell = new Cells.OutputCell()
     {
         Id = this.Id,
         Content = this.Content,
         Location = this.Location,
         SifLocation = this.SifLocation
     };
     return cell;
 }