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
BusinessItem.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="BusinessItem.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
11{
13 public class BusinessItem : BusinessBase<BusinessItem>
14 {
15 public BusinessItem() { }
16 private static PropertyInfo<string> IdProperty = RegisterProperty<string>(new PropertyInfo<string>("Id", "Id"));
17
18 public string Id
19 {
20 get
21 {
22 return GetProperty(IdProperty);
23 }
24 set
25 {
26 SetProperty(IdProperty, value);
27 }
28 }
29
30 private static PropertyInfo<string> OperationResultProperty = RegisterProperty<string>(new PropertyInfo<string>("OperationResult", "Operation Result"));
31
32 public string OperationResult
33 {
34 get
35 {
36 return GetProperty(OperationResultProperty);
37 }
38 set
39 {
40 SetProperty(OperationResultProperty, value);
41 }
42 }
43 }
44}
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.