public TimePointBase(int?pId, bool pIsAbsolute, TypeMeanBase pMeanValue, TypeUnitValue pSingleValue, TypeUnitRange pTotalValue, Reference pType, int?pType_Id) : this(DocConvert.ToInt(pId)) { IsAbsolute = pIsAbsolute; MeanValue = pMeanValue; SingleValue = pSingleValue; TotalValue = pTotalValue; Type = pType; Type_Id = pType_Id; }
public TimePoint(int?pId, bool pIsAbsolute, TypeMeanBase pMeanValue, TypeUnitValue pSingleValue, TypeUnitRange pTotalValue, Reference pType, int?pType_Id) : base(pId, pIsAbsolute, pMeanValue, pSingleValue, pTotalValue, pType, pType_Id) { }
public void Deconstruct(out bool pIsAbsolute, out TypeMeanBase pMeanValue, out TypeUnitValue pSingleValue, out TypeUnitRange pTotalValue, out Reference pType, out int?pType_Id) { pIsAbsolute = IsAbsolute; pMeanValue = MeanValue; pSingleValue = SingleValue; pTotalValue = TotalValue; pType = Type; pType_Id = Type_Id; }