Example #1
0
 public CalorimetricData(
     string locale,
     Guid componentId,
     string?name,
     string?description,
     string[] warnings,
     Guid creatorId,
     DateTime createdAt,
     AppliedMethod appliedMethod,
     ICollection <DataApproval> approvals,
     // ResponseApproval approval
     double[] gValues,
     double[] uValues
     ) : base(
         locale: locale,
         componentId: componentId,
         name: name,
         description: description,
         warnings: warnings,
         creatorId: creatorId,
         createdAt: createdAt,
         appliedMethod: appliedMethod,
         approvals: approvals
         )
 {
     GValues = gValues;
     UValues = uValues;
 }
Example #2
0
 protected DataX(
     string locale,
     Guid componentId,
     string?name,
     string?description,
     string[] warnings,
     Guid creatorId,
     DateTime createdAt,
     AppliedMethod appliedMethod,
     ICollection <DataApproval> approvals
     // ResponseApproval approval
     )
     : this(
         locale : locale,
         componentId : componentId,
         name : name,
         description : description,
         warnings : warnings,
         creatorId : creatorId,
         createdAt : createdAt
         )
 {
     AppliedMethod = appliedMethod;
     Approvals     = approvals;
     // Approval = approval;
 }
Example #3
0
 public OpticalData(
     string locale,
     Guid componentId,
     string?name,
     string?description,
     string[] warnings,
     Guid creatorId,
     DateTime createdAt,
     AppliedMethod appliedMethod,
     ICollection <DataApproval> approvals,
     // ResponseApproval approval
     double[] nearnormalHemisphericalVisibleTransmittances,
     double[] nearnormalHemisphericalVisibleReflectances,
     double[] nearnormalHemisphericalSolarTransmittances,
     double[] nearnormalHemisphericalSolarReflectances,
     double[] infraredEmittances,
     double[] colorRenderingIndices,
     ICollection <CielabColor> cielabColors
     ) : base(
         locale: locale,
         componentId: componentId,
         name: name,
         description: description,
         warnings: warnings,
         creatorId: creatorId,
         createdAt: createdAt,
         appliedMethod: appliedMethod,
         approvals: approvals
         )
 {
     NearnormalHemisphericalVisibleTransmittances = nearnormalHemisphericalVisibleTransmittances;
     NearnormalHemisphericalVisibleReflectances   = nearnormalHemisphericalVisibleReflectances;
     NearnormalHemisphericalSolarTransmittances   = nearnormalHemisphericalSolarTransmittances;
     NearnormalHemisphericalSolarReflectances     = nearnormalHemisphericalSolarReflectances;
     InfraredEmittances    = infraredEmittances;
     ColorRenderingIndices = colorRenderingIndices;
     CielabColors          = cielabColors;
 }
Example #4
0
 public HygrothermalData(
     string locale,
     Guid componentId,
     string?name,
     string?description,
     string[] warnings,
     Guid creatorId,
     DateTime createdAt,
     AppliedMethod appliedMethod,
     ICollection <DataApproval> approvals
     // ResponseApproval approval
     ) : base(
         locale: locale,
         componentId: componentId,
         name: name,
         description: description,
         warnings: warnings,
         creatorId: creatorId,
         createdAt: createdAt,
         appliedMethod: appliedMethod,
         approvals: approvals
         )
 {
 }