namespace InABox.Core { //[Serializable] //public class CoreTable : DataTable, ICoreTable //{ // public CoreTable() // : base() // { // } // public CoreTable(string tableName) // : base(tableName) // { // } // public CoreTable(string tableName, string tableNamespace) // : base(tableName, tableNamespace) // { // } // public CoreTable(SerializationInfo info, StreamingContext context) // : base(info, context) // { // } // protected override Type GetRowType() // { // return typeof(CoreRow); // } // protected override DataRow NewRowFromBuilder(DataRowBuilder builder) // { // return new CoreRow(builder); // } //} //[Serializable] //public class CoreRow : DataRow, ICoreRow //{ // public CoreRow() // : base(null) // { // } // public CoreRow(DataRowBuilder builder) // : base(builder) // { // } // public int Index => throw new NotImplementedException(); // public List Values => throw new NotImplementedException(); // public new CoreTable Table { get; set; } // public TType Get(string columnname, bool usedefault = true) // { // throw new NotImplementedException(); // } // public TType Get(Expression> expression) // { // throw new NotImplementedException(); // } // public void Set(string columnname, TType value) // { // throw new NotImplementedException(); // } // public void Set(Expression> expression, TType value) // { // throw new NotImplementedException(); // } // public Dictionary ToDictionary(string[] exclude) // { // throw new NotImplementedException(); // } // public object ToObject(Type t) // { // throw new NotImplementedException(); // } // public T1 ToObject() where T1 : BaseObject, new() // { // throw new NotImplementedException(); // } //} }