namespace AdventureWorks.Business
{
///
/// Contains common helper methods and properties used in this application.
///
public class Common
{
///
/// Gets the data entities.
///
/// The data entities.
public static CYCLE_STOREEntities DataEntities
{
get
{
return new CYCLE_STOREEntities();
}
}
}
}