ICCEBusinessContext.cs
420 Bytes
namespace CCE.Configuration
{
using CCE.Data.Configuration;
public interface ICCEBusinessContext
{
/// <summary>
/// Gets the cce context.
/// </summary>
/// <value>
/// The cce context.
/// </value>
ICCEContext CCEContext { get; }
/// <summary>
/// Gets the cce data context.
/// </summary>
/// <value>
/// The cce data context.
/// </value>
ICCEDataContext CCEDataContext { get; }
}
}