Index: src/Plugins/Wti/Wti.Data/WtiProject.cs
===================================================================
diff -u -rd6424435444e760d052fe6d8c8786e01bddf9d2b -r197fbe469c4b157c584994358432370a45110bff
--- src/Plugins/Wti/Wti.Data/WtiProject.cs (.../WtiProject.cs) (revision d6424435444e760d052fe6d8c8786e01bddf9d2b)
+++ src/Plugins/Wti/Wti.Data/WtiProject.cs (.../WtiProject.cs) (revision 197fbe469c4b157c584994358432370a45110bff)
@@ -4,29 +4,30 @@
namespace Wti.Data
{
+ ///
+ /// Container for all the data that has been imported and calculated by the user when performing an assessment.
+ ///
public class WtiProject : INameable, IObservable
{
private readonly IList observers = new List();
- private PipingFailureMechanism pipingFailureMechanism;
+ ///
+ /// Creates a new instance of with a default name set.
+ ///
public WtiProject()
{
Name = "WTI project";
}
+ ///
+ /// The name of the .
+ ///
public string Name { get; set; }
- public PipingFailureMechanism PipingFailureMechanism
- {
- get
- {
- return pipingFailureMechanism;
- }
- set
- {
- pipingFailureMechanism = value;
- }
- }
+ ///
+ /// Gets or sets the .
+ ///
+ public PipingFailureMechanism PipingFailureMechanism { get; set; }
#region IObservable