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.
▼
CSLA.NET
AnalyzerReleases.Shipped
AnalyzerReleases.Unshipped
CSLA .NET
►
Packages
►
Classes
▼
Files
►
File List
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Events
Macros
Pages
ConstructorTests.cs
Go to the documentation of this file.
1
using
System;
2
3
namespace
Csla.Analyzers.IntegrationTests
4
{
5
// This should have an error because it doesn't have a public constructor.
6
[
Serializable
]
7
public
class
OuterClass
8
:
BusinessBase
<OuterClass>
9
{
10
private
OuterClass
() { }
11
12
// This should have an error because it doesn't have a public constructor
13
// (note that it's a nested class).
14
[
Serializable
]
15
public
class
NestedClass
16
:
BusinessBase
<NestedClass>
17
{
18
private
NestedClass
() { }
19
}
20
}
21
22
// This should have an error because it doesn't have a public constructor
23
// and a warning for the constructor with arguments.
24
[
Serializable
]
25
public
class
PrivateConstructorTest
26
:
BusinessBase
<PrivateConstructorTest>
27
{
28
private
PrivateConstructorTest
(
int
x) { }
29
}
30
31
// This should have an error because it has a public constructor
32
// with arguments.
33
[
Serializable
]
34
public
class
PublicConstructorWithArgumentsTest
35
:
BusinessBase
<PublicConstructorWithArgumentsTest>
36
{
37
public
PublicConstructorWithArgumentsTest
(
int
x) { }
38
}
39
40
// This should have an error because it doesn't have a public constructor...
41
[
Serializable
]
42
public
class
InternalConstructorTest
43
:
BusinessBase
<PrivateConstructorTest>
44
{
45
// ... and I don't want to lose the comment
46
InternalConstructorTest
() { }
47
}
48
49
// This should have an error because it doesn't have a public constructor...
50
[
Serializable
]
51
public
class
PrivateConstructorTestNoArguments
52
:
BusinessBase
<PrivateConstructorTest>
53
{
54
// ... and I don't want to lose the comment
55
private
PrivateConstructorTestNoArguments
() { }
56
}
57
58
[
Serializable
]
59
public
class
PublicConstructorExplicitNoArgumentTest
60
:
BusinessBase
<PublicConstructorExplicitNoArgumentTest>
61
{
62
public
PublicConstructorExplicitNoArgumentTest
() { }
63
}
64
65
[
Serializable
]
66
public
class
PublicConstructorTest
67
:
BusinessBase
<PublicConstructorTest>
68
{ }
69
}
Csla.Analyzers.IntegrationTests.InternalConstructorTest
Definition:
ConstructorTests.cs:44
Csla.Analyzers.IntegrationTests.OuterClass.NestedClass
Definition:
ConstructorTests.cs:17
Csla.Analyzers.IntegrationTests.OuterClass
Definition:
ConstructorTests.cs:9
Csla.Analyzers.IntegrationTests.PrivateConstructorTest
Definition:
ConstructorTests.cs:27
Csla.Analyzers.IntegrationTests.PrivateConstructorTestNoArguments
Definition:
ConstructorTests.cs:53
Csla.Analyzers.IntegrationTests.PublicConstructorExplicitNoArgumentTest
Definition:
ConstructorTests.cs:61
Csla.Analyzers.IntegrationTests.PublicConstructorExplicitNoArgumentTest.PublicConstructorExplicitNoArgumentTest
PublicConstructorExplicitNoArgumentTest()
Definition:
ConstructorTests.cs:62
Csla.Analyzers.IntegrationTests.PublicConstructorTest
Definition:
ConstructorTests.cs:68
Csla.Analyzers.IntegrationTests.PublicConstructorWithArgumentsTest
Definition:
ConstructorTests.cs:36
Csla.Analyzers.IntegrationTests.PublicConstructorWithArgumentsTest.PublicConstructorWithArgumentsTest
PublicConstructorWithArgumentsTest(int x)
Definition:
ConstructorTests.cs:37
Csla.BusinessBase
This is the base class from which most business objects will be derived.
Definition:
BusinessBase.cs:38
Csla.Analyzers.IntegrationTests
Definition:
BusinessRuleCases.cs:5
Csla.TransactionIsolationLevel.Serializable
@ Serializable
Prevents updating or inserting until the transaction is complete.
Generated by
1.9.2