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.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
Csla.test/CommandBase/CommandObject.cs
Go to the documentation of this file.
1using System;
2using Csla;
3
5{
7 public class CommandObject : CommandBase<CommandObject>
8 {
9 public static readonly PropertyInfo<string> NameProperty = RegisterProperty<string>(c => c.Name);
10 public string Name
11 {
12 get { return ReadProperty(NameProperty); }
13 private set { LoadProperty(NameProperty, value); }
14 }
15
16 public static readonly PropertyInfo<int> NumProperty = RegisterProperty<int>(c => c.Num);
17 public int Num
18 {
19 get { return ReadProperty(NumProperty); }
20 private set { LoadProperty(NumProperty, value); }
21 }
22
23 [RunLocal]
24 [Create]
25 private void Create()
26 { }
27
28 }
29}
This is the base class from which command objects will be derived.
Definition: CommandBase.cs:51
Maintains metadata about a property.
static readonly PropertyInfo< string > NameProperty
static readonly PropertyInfo< int > NumProperty
@ Serializable
Prevents updating or inserting until the transaction is complete.