本文整理汇总了C#中YellowstonePathology.WriteFloat方法的典型用法代码示例。如果您正苦于以下问题:C# YellowstonePathology.WriteFloat方法的具体用法?C# YellowstonePathology.WriteFloat怎么用?C# YellowstonePathology.WriteFloat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类YellowstonePathology
的用法示例。
在下文中一共展示了YellowstonePathology.WriteFloat方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WriteProperties
public void WriteProperties(YellowstonePathology.Business.Domain.Persistence.IPropertyWriter propertyWriter)
{
this.m_FlowMarkerId = propertyWriter.WriteString("FlowMarkerId");
this.m_ReportNo = propertyWriter.WriteString("ReportNo");
this.m_Name = propertyWriter.WriteString("Name");
this.m_Percentage = propertyWriter.WriteFloat("Percentage");
this.m_Intensity = propertyWriter.WriteString("Intensity");
this.m_Interpretation = propertyWriter.WriteString("Interpretation");
this.m_Predictive = propertyWriter.WriteBoolean("Predictive");
this.m_Expresses = propertyWriter.WriteInt("Expresses");
}
示例2: WriteProperties
public override void WriteProperties(YellowstonePathology.Business.Domain.Persistence.IPropertyWriter propertyWriter)
{
base.WriteProperties(propertyWriter);
this.m_ReportNo = propertyWriter.WriteString("ReportNo");
this.m_GatingPopulation = propertyWriter.WriteInt("GatingPopulation");
this.m_GatingPopulationV2 = propertyWriter.WriteString("GatingPopulationV2");
this.m_LymphocyteCount = propertyWriter.WriteInt("LymphocyteCount");
this.m_GPLymphocytePrc = propertyWriter.WriteFloat("GPLymphocytePrc");
this.m_MonocyteCount = propertyWriter.WriteInt("MonocyteCount");
this.m_MyeloidCount = propertyWriter.WriteInt("MyeloidCount");
this.m_DimCD45ModSSCount = propertyWriter.WriteInt("DimCD45ModSSCount");
this.m_OtherCount = propertyWriter.WriteInt("OtherCount");
this.m_OtherName = propertyWriter.WriteString("OtherName");
this.m_LightScatter = propertyWriter.WriteString("LightScatter");
this.m_LightScatterV2 = propertyWriter.WriteNullableInt("LightScatterV2");
this.m_BCellPercent = propertyWriter.WriteFloat("BCellPercent");
this.m_TCellPercent = propertyWriter.WriteFloat("TCellPercent");
this.m_NKCellPercent = propertyWriter.WriteFloat("NKCellPercent");
this.m_MyeloidCellPercent = propertyWriter.WriteFloat("MyeloidCellPercent");
this.m_InterpretiveComment = propertyWriter.WriteString("InterpretiveComment");
this.m_Impression = propertyWriter.WriteString("Impression");
this.m_SpecimenViability = propertyWriter.WriteInt("SpecimenViability");
this.m_SpecimenViabilityPercent = propertyWriter.WriteFloat("SpecimenViabilityPercent");
this.m_CellPopulationOfInterest = propertyWriter.WriteString("CellPopulationOfInterest");
this.m_TestResult = propertyWriter.WriteString("TestResult");
this.m_CellDescription = propertyWriter.WriteString("CellDescription");
this.m_BTCellSelection = propertyWriter.WriteString("BTCellSelection");
this.m_KappaLambda = propertyWriter.WriteString("KappaLambda");
this.m_EGateCD34Percent = propertyWriter.WriteString("EGateCD34Percent");
this.m_EGateCD117Percent = propertyWriter.WriteString("EGateCD117Percent");
this.m_TechFinal = propertyWriter.WriteBoolean("TechFinal");
this.m_TechFinalDate = propertyWriter.WriteNullableDateTime("TechFinalDate");
this.m_TechFinalTime = propertyWriter.WriteNullableDateTime("TechFinalTime");
this.m_TechFinaledById = propertyWriter.WriteInt("TechFinaledById");
this.m_TestId = propertyWriter.WriteInt("TestId");
this.m_ReportComment = propertyWriter.WriteString("ReportComment");
this.m_TestCancelledComment = propertyWriter.WriteString("TestCancelledComment");
this.m_TestCancelled = propertyWriter.WriteBoolean("TestCancelled");
this.m_NoCharge = propertyWriter.WriteBoolean("NoCharge");
}