///////////////////////////////////////////////////////////////
// This is generated code.
//////////////////////////////////////////////////////////////
// Code is generated using LLBLGen Pro version: 2.0.0.0
// Code is generated on: Saturday, February 24, 2007 10:00:21 PM
// Code is generated using templates: SD.TemplateBindings.SharedTemplates.NET20
// Templates vendor: Solutions Design.
// Templates version:
//////////////////////////////////////////////////////////////
using System;
using DataFeedFrameworkDAL.DaoClasses;
using DataFeedFrameworkDAL.HelperClasses;
using SD.LLBLGen.Pro.ORMSupportClasses;
namespace DataFeedFrameworkDAL.FactoryClasses
{
///
/// Generic factory for DAO objects.
///
public partial class DAOFactory
{
///
/// Private CTor, no instantiation possible.
///
private DAOFactory()
{
}
/// Creates a new FeedCreationDAO object
/// the new DAO object ready to use for FeedCreation Entities
public static FeedCreationDAO CreateFeedCreationDAO()
{
return new FeedCreationDAO();
}
/// Creates a new SnippetDAO object
/// the new DAO object ready to use for Snippet Entities
public static SnippetDAO CreateSnippetDAO()
{
return new SnippetDAO();
}
/// Creates a new SnippetGroupDAO object
/// the new DAO object ready to use for SnippetGroup Entities
public static SnippetGroupDAO CreateSnippetGroupDAO()
{
return new SnippetGroupDAO();
}
/// Creates a new TypedListDAO object
/// The new DAO object ready to use for Typed Lists
public static TypedListDAO CreateTypedListDAO()
{
return new TypedListDAO();
}
#region Included Code
#endregion
}
}