예제 #1
0
        public Cells.InputCell ToInputCell()
        {
            var cell = new Cells.InputCell()
            {
                Id          = this.Id,
                Content     = this.Content,
                Location    = this.Location,
                SifLocation = this.SifLocation
            };

            return(cell);
        }
예제 #2
0
파일: Cell.cs 프로젝트: krauswg/SIFEI
 public Cells.InputCell ToInputCell()
 {
     var cell = new Cells.InputCell()
     {
         Id = this.Id,
         Content = this.Content,
         Location = this.Location,
         SifLocation = this.SifLocation
     };
     return cell;
 }