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
TestObjectFactory.cs
Go to the documentation of this file.
1
//-----------------------------------------------------------------------
2
// <copyright file="TestObjectFactory.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
//-----------------------------------------------------------------------
8
using
System;
9
using
System.Collections.Generic;
10
using
System.Linq;
11
using
System.Text;
12
13
namespace
Csla.Test.BypassPropertyChecks
14
{
15
public
class
TestObjectFactory
:
Csla
.Server.ObjectFactory
16
{
17
public
TestObjectFactory
(
ApplicationContext
applicationContext) : base(applicationContext) {}
18
19
public
BypassBusinessBaseUsingFactory
Fetch
()
20
{
21
BypassBusinessBaseUsingFactory
returnValue =
new
BypassBusinessBaseUsingFactory
();
22
using
(this.
BypassPropertyChecks
(returnValue))
23
{
24
returnValue.
Id2
= 7;
// bypass user rights
25
}
26
return
returnValue;
27
}
28
}
29
}
Csla.ApplicationContext
Provides consistent context information between the client and server DataPortal objects.
Definition:
ApplicationContext.cs:22
Csla.Server.ObjectFactory.BypassPropertyChecks
IDisposable BypassPropertyChecks(Csla.Core.BusinessBase businessObject)
By wrapping this property inside Using block you can set property values on businessObject business o...
Definition:
ObjectFactory.cs:215
Csla.Test.BypassPropertyChecks.BypassBusinessBaseUsingFactory
Definition:
BypassBusinessBaseUsingFactory.cs:19
Csla.Test.BypassPropertyChecks.BypassBusinessBaseUsingFactory.Id2
int Id2
Definition:
BypassBusinessBaseUsingFactory.cs:39
Csla.Test.BypassPropertyChecks.TestObjectFactory
Definition:
TestObjectFactory.cs:16
Csla.Test.BypassPropertyChecks.TestObjectFactory.Fetch
BypassBusinessBaseUsingFactory Fetch()
Definition:
TestObjectFactory.cs:19
Csla.Test.BypassPropertyChecks.TestObjectFactory.TestObjectFactory
TestObjectFactory(ApplicationContext applicationContext)
Definition:
TestObjectFactory.cs:17
Csla.Test.BypassPropertyChecks
Definition:
BypassBusinessBase.cs:14
Csla
Definition:
BusinessRuleCases.cs:5
Generated by
1.9.2