using System.Collections.Generic; namespace FlexFramework.Excel { /// /// Objects generator /// public interface ITableGenerator { /// /// Instantiate target table to object instances /// /// Table /// Object instance IEnumerable Instantiate(Table table); } /// /// Objects generator /// /// Target type public interface ITableGenerator { // /// Instantiate target table to object instances /// /// Table /// Object instance IEnumerable Instantiate(Table table); } }