CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
OperationsAndAttributes.cs
Go to the documentation of this file.
1using System;
2
4{
6 public sealed class OperationsAndAttributes
7 : BusinessBase<OperationsAndAttributes>
8 {
9 private void DataPortal_Fetch() { }
10 protected override void DataPortal_Update() { }
11
12 protected override void Child_Create() { }
13 private void Child_Execute() { }
14 }
15}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
@ Serializable
Prevents updating or inserting until the transaction is complete.