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
PersonPOCO.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="PersonPOCO.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Complex class that can be used for testing serialization behaviour</summary>
7//-----------------------------------------------------------------------
8using System;
10
12{
13
19 [AutoSerializable]
20 public partial class PersonPOCO
21 {
22
23#pragma warning disable CS0414 // Remove unused private members
24 private string _fieldTest = "foo";
25#pragma warning restore CS0414 // Remove unused private members
26 private string _lastName;
27
28 [AutoSerialized]
29 private string _middleName;
30
31 public int PersonId { get; set; }
32
33 public string FirstName { get; set; }
34
35 public string MiddleName => _middleName;
36
37 public void SetMiddleName(string middleName)
38 {
39 _middleName = middleName;
40 }
41
42 public string LastName
43 {
44 get { return _lastName; }
45 set { _lastName = value; }
46 }
47
48 [AutoNonSerialized]
49 public string NonSerializedText { get; set; } = string.Empty;
50
51 [AutoSerialized]
52 private string PrivateSerializedText { get; set; } = string.Empty;
53
55 {
56 return PrivateSerializedText;
57 }
58
59 public void SetPrivateSerializedText(string newValue)
60 {
61 PrivateSerializedText = newValue;
62 }
63
64 private string PrivateText { get; set; } = string.Empty;
65
67 {
68 return PrivateText;
69 }
70
71 public void SetUnderlyingPrivateText(string value)
72 {
73 PrivateText = value;
74 }
75
76 internal DateTime DateOfBirth { get; set; }
77
78 public void SetDateOfBirth(DateTime newDateOfBirth)
79 {
80 DateOfBirth = newDateOfBirth;
81 }
82
83 public DateTime GetDateOfBirth()
84 {
85 return DateOfBirth;
86 }
87
88 public AddressPOCO Address { get; set; }
89
90 public EmailAddress EmailAddress { get; set; }
91
92 }
93
94}
Object already implementing IMobileObject that can be used for testing serialization behaviour
Definition: EmailAddress.cs:21
A class for which automatic serialization code is to be generated Includes children of various types ...
Definition: PersonPOCO.cs:21
void SetPrivateSerializedText(string newValue)
Definition: PersonPOCO.cs:59
void SetDateOfBirth(DateTime newDateOfBirth)
Definition: PersonPOCO.cs:78