Class DataCollectionMethodology
Describes the methodology used in a data collection process.
Inheritance
Inherited Members
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class DataCollectionMethodology : VersionableBase, IVersionable, IIdentifiable, IVisitable, IHasCustomFields
Constructors
DataCollectionMethodology()
Initializes a new instance of the DataCollectionMethodology class.
Declaration
public DataCollectionMethodology()
Properties
DeviationFromSampleDesign
Gets an object describing how the actual sample deviated from the sample design.
Declaration
public ObservableCollection<MethodologyItem> DeviationFromSampleDesign { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<MethodologyItem> |
IsEmpty
Gets a value indicating whether this object lacks any content.
Declaration
public bool IsEmpty { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
ItemType
Gets the universally unique identifier representing the item's type.
Declaration
public override Guid ItemType { get; }
Property Value
Type | Description |
---|---|
Guid | The identifier representing the item's type. |
Overrides
Methodology
Gets an object describing the methodology of the data collection process.
Declaration
public ObservableCollection<MethodologyItem> Methodology { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<MethodologyItem> |
QualityStatements
Gets a collection of quality statements applicable to the data collection process.
Declaration
public ObservableCollection<QualityStatement> QualityStatements { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<QualityStatement> |
SamplingProcedure
Gets an object describing the sampling procedure.
Declaration
public ObservableCollection<MethodologyItem> SamplingProcedure { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<MethodologyItem> |
Software
Gets descriptions of software used by the data collection.
Declaration
public ObservableCollection<Software> Software { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<Software> |
TimeMethod
Gets an object describing the time method of the data collection.
Declaration
public ObservableCollection<MethodologyItem> TimeMethod { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<MethodologyItem> |
Methods
GetChildren()
Gets the identifiers of the item's children.
Declaration
public override ChildItemCollection GetChildren()
Returns
Type | Description |
---|---|
ChildItemCollection | The identifiers of the item's children. |
Overrides
RemoveChild(IdentifierTriple)
Removes the specified child.
Declaration
public override int RemoveChild(IdentifierTriple child)
Parameters
Type | Name | Description |
---|---|---|
IdentifierTriple | child | The child to be removed. |
Returns
Type | Description |
---|---|
System.Int32 | The number of children removed from the item. |
Overrides
ReplaceChild(IdentifierTriple, IVersionable)
Replaces the child with the specified identifier with the provided item.
Declaration
public override int ReplaceChild(IdentifierTriple toReplace, IVersionable child)
Parameters
Type | Name | Description |
---|---|---|
IdentifierTriple | toReplace | The identifier of the child to replace. |
IVersionable | child | The new child. |
Returns
Type | Description |
---|---|
System.Int32 | The number of children replaced. |