Ejemplo n.º 1
0
        private AttributeMetadata CreateFileAttribute(ExcelWorksheet sheet, int rowIndex, int startCell)
        {
            var famd = new FileAttributeMetadata
            {
                MaxSizeInKB = sheet.GetValue <int>(rowIndex, startCell),
            };

            return(famd);
        }
Ejemplo n.º 2
0
 public FileAttributeMetadataInfo(FileAttributeMetadata amd)
     : base(amd)
 {
     this.amd = amd;
 }