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
Silverlight/Rollback/RollbackRoot.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RollbackRoot.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;
11
13{
15 public class RollbackRoot : BusinessBase<RollbackRoot>
16 {
17 private RollbackRoot() { }
18
19 private static PropertyInfo<int> UnInitedProperty = RegisterProperty<int>(c => c.UnInitedP, "UnInitedP");
20 public int UnInitedP
21 {
22 get { return GetProperty(UnInitedProperty); }
23 set { SetProperty(UnInitedProperty, value); }
24 }
25
26 private static PropertyInfo<string> AnotherProperty = RegisterProperty<string>(c => c.Another, "Another");
27 public string Another
28 {
29 get { return GetProperty(AnotherProperty); }
30 set { SetProperty(AnotherProperty, value); }
31 }
32
33 }
34}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Maintains metadata about a property.
@ Serializable
Prevents updating or inserting until the transaction is complete.