Commit for development environment setup
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
|
||||
namespace Csla
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides information about the DataPortal
|
||||
/// call.
|
||||
/// </summary>
|
||||
public class DataPortalEventArgs : EventArgs
|
||||
{
|
||||
private Server.DataPortalContext _dataPortalContext;
|
||||
|
||||
/// <summary>
|
||||
/// The DataPortalContext object passed to the
|
||||
/// server-side DataPortal.
|
||||
/// </summary>
|
||||
public Server.DataPortalContext DataPortalContext
|
||||
{
|
||||
get { return _dataPortalContext; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates an instance of the object.
|
||||
/// </summary>
|
||||
/// <param name="dataPortalContext">
|
||||
/// Data portal context object.
|
||||
/// </param>
|
||||
public DataPortalEventArgs(Server.DataPortalContext dataPortalContext)
|
||||
{
|
||||
_dataPortalContext = dataPortalContext;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user