/*
* Namespace Summary
* Copyright (C) 2005+ Bogdan Damian Constantin
* E-Mail: damianbcpetro@gmail.com
* WEB: http://www.sourceforge.net/projects/dataholder
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License 2.1 or later, as
* published by the Free Software Foundation. See the included License.txt
* or http://www.gnu.org/copyleft/lesser.html for details.
*
*/
using System;
using System.Collections;
namespace DataHolder.DataPersistence.DBAProvider{
/// <summary>
/// Summary description for DBDataSource.
/// </summary>
public class DBDataSource
{
DBTable [] l_DataTables;
public DBDataSource()
{
}
public DBDataSource(string p_DataTable)
{
l_DataTables = new DBTable[]{new DBTable(p_DataTable)};
}
public DBDataSource(DBTable [] p_DataTables)
{
l_DataTables = p_DataTables;
}
public DBTable [] DataTables
{
get{return l_DataTables;}
set{l_DataTables = value;}
}
}
}
|