repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Removed untyped contructor from ComponentRegistration and add a protected setter.
[castle.git]
/
Experiments
/
Castle.Igloo
/
Castle.Igloo.Test
/
ScopeTest
/
Components
/
SingletonScopeComponent.cs
blob
26b66f8f5d1a7bba46f3523a27b34a152199071e
1
2
namespace
Castle
.
Igloo
.
Test
.
ScopeTest
.
Components
3
{
4
5
public class
SingletonScopeComponent
:
IComponent
6
{
7
8
#region IComponent Members
9
10
public int
ID
11
{
12
get
13
{
14
return this
.
GetHashCode
();
15
}
16
}
17
18
#endregion
19
}
20
}