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
SingleItem.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="SingleItem.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;
12using Csla;
13using Csla.Security;
14using Csla.Core;
16
18{
20 public class SingleItem : BusinessBase<SingleItem>
21 {
22 private SingleItem() { }
23
24 public static SingleItem GetSingleItem()
25 {
26 return new SingleItem();
27 }
28
29 private static PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id, "Internal Id", 0);
30 public int Id
31 {
32 get
33 {
34 return GetProperty<int>(IdProperty);
35 }
36 set
37 {
38 SetProperty<int>(IdProperty,value);
39 }
40 }
41
42 private static PropertyInfo<string> NameProperty = RegisterProperty<string>(c => c.Name, "Item Name", "");
43 public string Name
44 {
45 get
46 {
47 return GetProperty<string>(NameProperty);
48 }
49 set
50 {
51 SetProperty<string>(NameProperty, value);
52 }
53 }
54
55 private static PropertyInfo<SmartDate> DateCreatedProperty = RegisterProperty<SmartDate>(c => c.DateCreated, "Date Created On");
56 public string DateCreated
57 {
58 get
59 {
60 return GetProperty<SmartDate>(DateCreatedProperty).Text;
61 }
62 set
63 {
64 SmartDate test=new SmartDate();
65 if (SmartDate.TryParse(value, ref test) == true)
66 {
67 SetProperty<SmartDate>(DateCreatedProperty, test);
68 }
69 }
70 }
71
72 private static PropertyInfo<string> MethodCalledProperty = RegisterProperty<string>(c => c.MethodCalled, "MethodCalled", "");
73 public string MethodCalled
74 {
75 get
76 {
77 return GetProperty<string>(MethodCalledProperty);
78 }
79 set
80 {
81 SetProperty<string>(MethodCalledProperty, value);
82 }
83 }
84
85 internal static SingleItem GetSingleItem(int id, string name, DateTime createdOn)
86 {
87 SingleItem newItem = new SingleItem();
88 newItem.LoadProperty(IdProperty, id);
89 newItem.LoadProperty(NameProperty, name);
90 newItem.LoadProperty(DateCreatedProperty, new SmartDate(createdOn));
91 //newItem.MarkAsChild(); Leave this off to allow deletion
92 newItem.MarkOld();
93 return newItem;
94 }
95
96 [DeleteSelf]void DataPortal_DeleteSelf()
97 {
98 if (!IsNew)
99 MethodCalled = "DataPortal_DeleteSelf";
100 }
101
102 [Insert]
103 protected void DataPortal_Insert()
104 {
105 MethodCalled = "DataPortal_Insert";
106 }
107
108 [Update]
109 protected void DataPortal_Update()
110 {
111 MethodCalled = "DataPortal_Update";
112 }
113 [Delete]
114 protected void DataPortal_Delete(object criteria)
115 {
116 if (!IsNew)
117 MethodCalled = "DataPortal_Delete";
118 }
119 }
120}
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.
@ Update
Update operation (includes insert, update and delete self).
@ Delete
Delete operation.
Provides a date data type that understands the concept of an empty date value.
Definition: SmartDate.cs:32
static bool TryParse(string value, ref SmartDate result)
Converts a string value into a SmartDate.
Definition: SmartDate.cs:633