CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
IDataPortalTarget.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IDataPortalTarget.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Server
11{
12 internal interface IDataPortalTarget
13 {
14 void MarkAsChild();
15 void MarkNew();
16 void MarkOld();
17 void CheckRules();
18 void DataPortal_OnDataPortalInvoke(DataPortalEventArgs e);
19 void DataPortal_OnDataPortalInvokeComplete(DataPortalEventArgs e);
20 void DataPortal_OnDataPortalException(DataPortalEventArgs e, Exception ex);
21 void Child_OnDataPortalInvoke(DataPortalEventArgs e);
22 void Child_OnDataPortalInvokeComplete(DataPortalEventArgs e);
23 void Child_OnDataPortalException(DataPortalEventArgs e, Exception ex);
24 }
25}
@ CheckRules
Called from CheckRules