public List <string> ToStringList() { List <string> list = new List <string>(); string cropYear; if (CropYear == 0) { cropYear = "0"; } else { cropYear = CropYear.ToString(); } list.Add("CropYear: " + cropYear); string crop; if (Crop == null) { crop = string.Empty; } else { crop = Crop.ToString(); } list.Add("Crop: " + crop); string grainHeight; if (GrainHeight == 0) { grainHeight = "0"; } else { grainHeight = GrainHeight.ToString(); } list.Add("Grain Height: " + grainHeight); string hopperHeight; if (GrainHopperHeight == 0) { hopperHeight = "0"; } else { hopperHeight = GrainHopperHeight.ToString(); } list.Add("Grain Hopper Height: " + hopperHeight.ToString()); string coneHeight; if (ConeHeight == 0) { coneHeight = "0"; } else { coneHeight = ConeHeight.ToString(); } list.Add("Cone Height: " + coneHeight); string totalVolume; if (TotalVolume == 0) { totalVolume = "0"; } else { totalVolume = TotalVolume.ToString("#,###.##"); } list.Add("Total Volume: " + totalVolume); string moistureOfGrain; if (MoistureOfGrain == 0) { moistureOfGrain = "0"; } else { moistureOfGrain = MoistureOfGrain.ToString(); } list.Add("Moisture Of Grain: " + moistureOfGrain); string moistureFactor; if (MoistureFactor == 0) { moistureFactor = "0"; } else { moistureFactor = MoistureFactor.ToString(); } list.Add("Moisture Factor: " + moistureFactor); string testWeight; if (TestWeight == 0) { testWeight = "0"; } else { testWeight = TestWeight.ToString(); } list.Add("Test Weight: " + testWeight); string packFactor; if (PackFactor == 0) { packFactor = "0"; } else { packFactor = PackFactor.ToString(); } list.Add("Pack Factor: " + packFactor); string dockagePercent; if (DockagePercent == 0) { dockagePercent = "0"; } else { dockagePercent = DockagePercent.ToString(); } list.Add("Dockage Percent: " + dockagePercent); string dockageFactor; if (DockageFactor == 0) { dockageFactor = "0"; } else { dockageFactor = DockageFactor.ToString(); } list.Add("Dockage Factor: " + dockageFactor); string conversionFactor; if (ConversionFactor == 0) { conversionFactor = "0"; } else { conversionFactor = ConversionFactor.ToString(); } list.Add("Conversion Factor: " + conversionFactor); string shellFactor; if (ShellFactor == 0) { shellFactor = "0"; } else { shellFactor = ShellFactor.ToString(); } list.Add("Shell Factor: " + shellFactor); string totalDeductionVolume; if (TotalDeductionVolume == 0) { totalDeductionVolume = "0"; } else { totalDeductionVolume = TotalDeductionVolume.ToString(); } list.Add("Total Deduction Volume: " + totalDeductionVolume); string notes; if (Notes == null) { notes = string.Empty; } else { notes = Notes.ToString(); } list.Add("Notes: " + notes); return(list); }
public Dictionary <string, string> ToStringDict() { Dictionary <string, string> dict = new Dictionary <string, string>(); string cropYear; if (CropYear == 0) { cropYear = "0"; } else { cropYear = CropYear.ToString(); } dict.Add("cropYear", cropYear); string crop; if (Crop == null) { crop = string.Empty; } else { crop = Crop.ToString(); } dict.Add("crop", crop); string grainHeight; if (GrainHeight == 0) { grainHeight = "0"; } else { grainHeight = GrainHeight.ToString(); } dict.Add("grainHeight", grainHeight); string grainHopperHeight; if (GrainHopperHeight == 0) { grainHopperHeight = "0"; } else { grainHopperHeight = GrainHopperHeight.ToString(); } dict.Add("grainHopperHeight", grainHopperHeight); string coneHeight; if (ConeHeight == 0) { coneHeight = "0"; } else { coneHeight = ConeHeight.ToString(); } dict.Add("coneHeight", coneHeight); string totalVolume; if (TotalVolume == 0) { totalVolume = "0"; } else { totalVolume = TotalVolume.ToString("#,###.##"); } dict.Add("totalVolume", totalVolume); string moistureOfGrain; if (MoistureOfGrain == 0) { moistureOfGrain = "0"; } else { moistureOfGrain = MoistureOfGrain.ToString(); } dict.Add("moistureOfGrain", moistureOfGrain); string moistureFactor; if (MoistureFactor == 0) { moistureFactor = "0"; } else { moistureFactor = MoistureFactor.ToString(); } dict.Add("moistureFactor", moistureFactor); string testWeight; if (TestWeight == 0) { testWeight = "0"; } else { testWeight = TestWeight.ToString(); } dict.Add("testWeight", testWeight); string packFactor; if (PackFactor == 0) { packFactor = "0"; } else { packFactor = PackFactor.ToString(); } dict.Add("packFactor", packFactor); string dockagePercent; if (DockagePercent == 0) { dockagePercent = "0"; } else { dockagePercent = DockagePercent.ToString(); } dict.Add("dockagePercent", dockagePercent); string dockageFactor; if (DockageFactor == 0) { dockageFactor = "0"; } else { dockageFactor = DockageFactor.ToString(); } dict.Add("dockageFactor", dockageFactor); string conversionFactor; if (ConversionFactor == 0) { conversionFactor = "0"; } else { conversionFactor = ConversionFactor.ToString(); } dict.Add("conversionFactor", conversionFactor); string shellFactor; if (ShellFactor == 0) { shellFactor = "0"; } else { shellFactor = ShellFactor.ToString(); } dict.Add("shellFactor", shellFactor); string totalDeductionVolume; if (TotalDeductionVolume == 0) { totalDeductionVolume = "0"; } else { totalDeductionVolume = TotalDeductionVolume.ToString(); } dict.Add("totalDeductionVolume", totalDeductionVolume); string notes; if (Notes == null) { notes = string.Empty; } else { notes = Notes.ToString(); } dict.Add("notes", notes); return(dict); }