/// <summary> /// Initializes a new instance of the <see cref="T:Microsoft.Synchronization.Data.Server.SyncAdapter"/> class by using a table name parameter. /// </summary> /// <param name="tableName">The name of the table in the server database.</param> public TestSyncAdapter(string tableName) { this._tableName = tableName; this._columnMappings = new SyncColumnMappingCollection(); }
/// <summary> /// Initializes a new instance of the <see cref="T:Microsoft.Synchronization.Data.Server.SyncAdapter"/> class by using default values. /// </summary> public TestSyncAdapter() { this._columnMappings = new SyncColumnMappingCollection(); }