My favorites | Sign in
Logo
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
namespace uNhAddIns.Adapters
{
/// <summary>
/// Contract for applicationi initializer.
/// </summary>
/// <remarks>
/// http://en.wikipedia.org/wiki/Guy-wire
/// A guy-wire or guy-rope is a tensioned cable designed to add stability to structures.
/// One end of the cable is attached to the structure, and the other is anchored to the ground at a distance from the structure's base.
/// </remarks>
public interface IGuyWire
{
/// <summary>
/// Application wire.
/// </summary>
/// <remarks>
/// IoC container configuration (more probably conf. by code).
/// </remarks>
void Wire();

/// <summary>
/// Application dewire
/// </summary>
/// <remarks>
/// IoC container dispose.
/// </remarks>
void Dewire();
}
}
Show details Hide details

Change log

r677 by fabiomaulo on Jul 31, 2009   Diff
Added the IGuyWire (helper to abstract the
configuration of the IoC)
Go to: 
Sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 777 bytes, 29 lines
Hosted by Google Code