Example #1
0
 /// <summary>
 /// returns formatted unspecified quantity for HWIC waste
 /// </summary>
 public static string FormatHWICUnspec(this WasteTransfers.WasteTransferRow row)
 {
     return(QuantityFormat.Format(row.QuantityUnspecHWIC, row.UnitCodeHWIC));
 }
Example #2
0
 /// <summary>
 /// returns formatted tooltip text for HWIC
 /// </summary>
 public static string ToolTipHWIC(this WasteTransfers.WasteTransferRow row)
 {
     return(ToolTip(row.FormatHWICTotal(), row.FormatHWICRecovery(), row.FormatHWICDisposal(), row.FormatHWICUnspec()));
 }
Example #3
0
 /// <summary>
 /// returns formatted recovery quantity for HWIC waste
 /// </summary>
 public static string FormatHWICRecovery(this WasteTransfers.WasteTransferRow row)
 {
     return(QuantityFormat.Format(row.QuantityRecoveryHWIC, row.UnitCodeHWIC));
 }
Example #4
0
 /// <summary>
 /// returns formatted disposal quantity for HWIC waste
 /// </summary>
 public static string FormatHWICDisposal(this WasteTransfers.WasteTransferRow row)
 {
     return(QuantityFormat.Format(row.QuantityDisposalHWIC, row.UnitCodeHWIC));
 }
Example #5
0
 /// <summary>
 /// returns formatted tooltip text for NON-HW
 /// </summary>
 public static string ToolTipNONHW(this WasteTransfers.WasteTransferRow row)
 {
     return(ToolTip(row.FormatNONHWTotal(), row.FormatNONHWRecovery(), row.FormatNONHWDisposal(), row.FormatNONHWUnspec()));
 }
Example #6
0
 /// <summary>
 /// returns formatted unspecified quantity for NON-HW waste
 /// </summary>
 public static string FormatNONHWUnspec(this WasteTransfers.WasteTransferRow row)
 {
     return(QuantityFormat.Format(row.QuantityUnspecNONHW, row.UnitCodeNONHW));
 }
Example #7
0
 /// <summary>
 /// returns formatted disposal quantity for NON-HW waste
 /// </summary>
 public static string FormatNONHWDisposal(this WasteTransfers.WasteTransferRow row)
 {
     return(QuantityFormat.Format(row.QuantityDisposalNONHW, row.UnitCodeNONHW));
 }
Example #8
0
 /// <summary>
 /// returns formatted recovery quantity for NON-HW waste
 /// </summary>
 public static string FormatNONHWRecovery(this WasteTransfers.WasteTransferRow row)
 {
     return(QuantityFormat.Format(row.QuantityRecoveryNONHW, row.UnitCodeNONHW));
 }
Example #9
0
 /// <summary>
 /// returns formatted total quantity for HW waste
 /// </summary>
 public static string FormatHWTotal(this WasteTransfers.WasteTransferRow row)
 {
     return(QuantityFormat.Format(row.TotalSum, row.UnitCodeSum));
 }