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
LegacySplitBase.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="LegacySplitBase.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.Text;
11
13{
14 [Serializable()]
15 public abstract class LegacySplitBase<T> : Csla.BusinessBase<T>
16 where T : LegacySplitBase<T>
17 {
18 #region Business Methods
19
20 public static PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id, RelationshipTypes.PrivateField);
21 private int _id = IdProperty.DefaultValue;
22 public int Id
23 {
24 get { return GetProperty(IdProperty, _id); }
25 set { SetProperty(IdProperty, ref _id, value); }
26 }
27
28 #endregion
29
30 #region Data Access
31
32 [Serializable()]
33 internal class Criteria : CriteriaBase<Criteria>
34 {
35 private int _id;
36 public int Id
37 {
38 get { return _id; }
39 }
40 public Criteria(int id)
41 { _id = id; }
42 }
43
44 [Create]
45 protected void DataPortal_Create()
46 {
47 _id = 0;
49 TestResults.Add("LegacySplit", "Created");
50 }
51
52 protected void DataPortal_Fetch(object criteria)
53 {
54 _id = ((Criteria)criteria).Id;
56 TestResults.Add("LegacySplit", "Fetched");
57 }
58
59 [Insert]
60 protected void DataPortal_Insert()
61 {
63 TestResults.Add("LegacySplit", "Inserted");
64 }
65
66 [Update]
67 protected void DataPortal_Update()
68 {
70 TestResults.Add("LegacySplit", "Updated");
71 }
72
73 [Delete]
74 protected void DataPortal_Delete(object criteria)
75 {
77 TestResults.Add("LegacySplit", "Deleted");
78 }
79
80 [DeleteSelf]
81 protected void DataPortal_DeleteSelf()
82 {
84 TestResults.Add("LegacySplit", "SelfDeleted");
85 }
86
87 #endregion
88
89 }
90}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
virtual void Delete()
Marks the object for deletion.
object GetProperty(IPropertyInfo propertyInfo)
Gets a property's value as a specified type.
void SetProperty(IPropertyInfo propertyInfo, object newValue)
Sets a property's managed field with the supplied value, and then calls PropertyHasChanged if the val...
Base type from which Criteria classes can be derived in a business class.
Definition: CriteriaBase.cs:25
Maintains metadata about a property.
static PropertyInfo< int > IdProperty
Static dictionary-like class that offers similar functionality to GlobalContext This is used in tests...
Definition: TestResults.cs:21
static void Reinitialise()
Reinitialise the dictionary, clearing any existing results, ready for the next test
Definition: TestResults.cs:69
static void Add(string key, string value)
Add an item to the test results, to indicate an outcome of a particular operation
Definition: TestResults.cs:29
RelationshipTypes
List of valid relationship types between a parent object and another object through a managed propert...
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Update
Update operation (includes insert, update and delete self).
@ Create
Create operation.