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.
ApplicationContextManagerUnitTests.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace Csla.TestHelpers
6{
7 public class ApplicationContextManagerUnitTests : Csla.Core.ApplicationContextManagerAsyncLocal
8 {
9 public Guid InstanceId { get; private set; } = Guid.NewGuid();
10
11 public DateTime CreatedAt { get; private set; } = DateTime.Now;
12 }
13}