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
MockEditableChild.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="MockEditableChild.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;
9using System.Collections.Generic;
10using System.Linq;
11using System.Text;
13
15{
17 public partial class MockEditableChild : BusinessBase<MockEditableChild>
18 {
19 #region Properties
20
21 private static PropertyInfo<Guid> IdProperty = RegisterProperty<Guid>(
22 typeof(MockEditableChild),
23 new PropertyInfo<Guid>("Id"));
24
25 private static PropertyInfo<string> NameProperty = RegisterProperty<string>(
26 typeof(MockEditableChild),
27 new PropertyInfo<string>("Name"));
28
29 private static PropertyInfo<GrandChildList> GrandChildrenProperty = RegisterProperty<GrandChildList>(
30 typeof(MockEditableChild),
31 new PropertyInfo<GrandChildList>("GrandChildren"));
32
33 private static PropertyInfo<string> DataPortalMethodProperty = RegisterProperty(
34 typeof(MockEditableChild),
35 new PropertyInfo<string>("DataPortalMethod"));
36
37 public string DataPortalMethod
38 {
39 get { return GetProperty(DataPortalMethodProperty); }
40 set { SetProperty(DataPortalMethodProperty, value); }
41 }
42
43 public Guid Id
44 {
45 get { return GetProperty<Guid>(IdProperty); }
46 set { SetProperty<Guid>(IdProperty, value); }
47 }
48
49 public string Name
50 {
51 get { return GetProperty<string>(NameProperty); }
52 set { SetProperty<string>(NameProperty, value); }
53 }
54
56 {
57 get { return GetProperty<GrandChildList>(GrandChildrenProperty); }
58 set { SetProperty<GrandChildList>(GrandChildrenProperty, value); }
59 }
60
61 #endregion
62
63 public override string ToString()
64 {
65 return Name.ToString();
66 }
67 }
68}
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.