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
SplitOverloadBase.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="SplitOverloadBase.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 SplitOverloadBase<T> : Csla.BusinessBase<T>
16 where T : SplitOverloadBase<T>
17 {
18 #region Business Methods
19
20 public static PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id);
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
31 #region Factory Methods
32
33 public static T NewObject(IDataPortal<T> dataPortal)
34 {
35 return dataPortal.Create();
36 }
37 public static T NewObjectWithCriteria(IDataPortal<T> dataPortal)
38 {
39 return dataPortal.Create(new Criteria1(0));
40 }
41
42 public static T GetObject(int id, IDataPortal<T> dataPortal)
43 {
44 return dataPortal.Fetch(new Criteria(id));
45 }
46 public static void DeleteObject(int id, IDataPortal<T> dataPortal)
47 {
48 dataPortal.Delete(new Criteria(id));
49 }
50
51 #endregion
52
53 #region Data Access
54
55 [Serializable()]
56 private class Criteria : CriteriaBase<Criteria>
57 {
58 private int _id;
59 public int Id
60 {
61 get { return _id; }
62 }
63 public Criteria(int id)
64 { _id = id; }
65 }
66 [Serializable()]
67 private class Criteria1 : CriteriaBase<Criteria1>
68 {
69 private int _id;
70 public int Id
71 {
72 get { return _id; }
73 }
74 public Criteria1(int id)
75 { _id = id; }
76 }
77
78 [Create]
79 protected void DataPortal_Create()
80 {
81 _id = 0;
83 TestResults.Add("SplitOverload", "Created");
84 BusinessRules.CheckRules();
85 }
86
87 [Create]
88 private void DataPortal_Create(Criteria1 criteria)
89 {
90 _id = 0;
92 TestResults.Add("SplitOverload", "Created1");
93 BusinessRules.CheckRules();
94 }
95
96 private void DataPortal_Fetch(Criteria criteria)
97 {
98 _id = criteria.Id;
100 TestResults.Add("SplitOverload", "Fetched");
101 }
102 private void DataPortal_Fetch(Criteria1 criteria)
103 {
104 _id = criteria.Id;
105 TestResults.Reinitialise();
106 TestResults.Add("SplitOverload", "Fetched1");
107 }
108 [Delete]
109 private void DataPortal_Delete(Criteria criteria)
110 {
111 TestResults.Reinitialise();
112 TestResults.Add("SplitOverload", "Deleted");
113 }
114 [Delete]
115 private void DataPortal_Delete(Criteria1 criteria)
116 {
117 TestResults.Reinitialise();
118 TestResults.Add("SplitOverload", "Deleted1");
119 }
120 #endregion
121
122 }
123}
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.
BusinessRules BusinessRules
Provides access to the broken rules functionality.
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 T GetObject(int id, IDataPortal< T > dataPortal)
static T NewObject(IDataPortal< T > dataPortal)
static T NewObjectWithCriteria(IDataPortal< T > dataPortal)
static void DeleteObject(int id, IDataPortal< T > dataPortal)
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
Interface defining the members of the data portal type.
Definition: IDataPortalT.cs:17
void Delete(params object[] criteria)
Called by a Shared (static in C#) method in the business class to cause immediate deletion of a speci...
object Fetch(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
object Create(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Create
Create operation.