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.
CorrectOperationAttributeUsage.cs
Go to the documentation of this file.
1using System;
2
4{
5 public sealed class NotAStereotype
6 {
7 [Fetch]
8 private void Fetch() { }
9 }
10
12 public sealed class StaticOperation
13 : BusinessBase<StaticOperation>
14 {
15 [Fetch]
16 private static void Fetch() { }
17 }
18}
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.