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
SingleOverload.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="SingleOverload.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 class SingleOverload : BusinessBase<SingleOverload>
16 {
17 #region Business Methods
18
19 public static PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id);
20 public int Id
21 {
22 get { return GetProperty(IdProperty); }
23 set { SetProperty(IdProperty, value); }
24 }
25
26 #endregion
27
28 #region Factory Methods
29
31 {
32 return dataPortal.Create();
33 }
35 {
36 return dataPortal.Create(new OtherCriteria(0));
37 }
38
39 public static SingleOverload GetObject(int id, IDataPortal<SingleOverload> dataPortal)
40 {
41 return dataPortal.Fetch(new Criteria(id));
42 }
43
44 public static void DeleteObject(int id, IDataPortal<SingleOverload> dataPortal)
45 {
46 dataPortal.Delete(new Criteria(id));
47 }
48
49 #endregion
50
51 #region Data Access
52
53 [Serializable()]
54 private class Criteria
55 {
56 private int _id;
57 public int Id
58 {
59 get { return _id; }
60 }
61 public Criteria(int id)
62 { _id = id; }
63 }
64
65 [Serializable()]
66 private class OtherCriteria
67 {
68 private int _id;
69 public int Id
70 {
71 get { return _id; }
72 }
73 public OtherCriteria(int id)
74 { _id = id; }
75 }
76
77 [Create]
78 protected void DataPortal_Create()
79 {
80 using (BypassPropertyChecks)
81 Id = 0;
83 TestResults.Add("SingleOverload", "Created0");
84 BusinessRules.CheckRules();
85 }
86
87 [Create]
88 private void DataPortal_Create(Criteria criteria)
89 {
90 using (BypassPropertyChecks)
91 Id = 0;
93 TestResults.Add("SingleOverload", "Created");
94 BusinessRules.CheckRules();
95 }
96
97 [Create]
98 private void DataPortal_Create(OtherCriteria criteria)
99 {
100 using (BypassPropertyChecks)
101 Id = 0;
103 TestResults.Add("SingleOverload", "Created1");
104 BusinessRules.CheckRules();
105 }
106
107 private void DataPortal_Fetch(Criteria criteria)
108 {
109 using (BypassPropertyChecks)
110 Id = criteria.Id;
111 TestResults.Reinitialise();
112 TestResults.Add("SingleOverload", "Fetched");
113 }
114 private void DataPortal_Fetch(OtherCriteria criteria)
115 {
116 using (BypassPropertyChecks)
117 Id = criteria.Id;
118 TestResults.Reinitialise();
119 TestResults.Add("SingleOverload", "Fetched1");
120 }
121 [Delete]
122 private void DataPortal_Delete(Criteria criteria)
123 {
124 TestResults.Reinitialise();
125 TestResults.Add("SingleOverload", "Deleted");
126 }
127 [Delete]
128 private void DataPortal_Delete(OtherCriteria criteria)
129 {
130 TestResults.Reinitialise();
131 TestResults.Add("SingleOverload", "Deleted1");
132 }
133 #endregion
134 }
135}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
Maintains metadata about a property.
static SingleOverload NewObjectWithCriteria(IDataPortal< SingleOverload > dataPortal)
static void DeleteObject(int id, IDataPortal< SingleOverload > dataPortal)
static SingleOverload NewObject(IDataPortal< SingleOverload > dataPortal)
static PropertyInfo< int > IdProperty
static SingleOverload GetObject(int id, IDataPortal< SingleOverload > 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.
@ Delete
Delete operation.