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.
UtilitiesTestHelper.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="UtilitiesTestHelper.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;
9
10namespace Csla.Test.Utilities
11{
13 {
14 public const string ToStringValue = "UtilitiesTestHelper.ToString";
15
16 public string StringProperty { get; set; }
17
18 public string NullableStringProperty { get; set; }
19
20 public int IntProperty { get; set; }
21
22 public override string ToString()
23 {
24 return ToStringValue;
25 }
26 }
27}