Add backload for multiple file upload

This commit is contained in:
2016-01-27 11:06:47 -05:00
parent 2c73fb6883
commit 37a7a24436
261 changed files with 28994 additions and 96 deletions
+5 -3
View File
@@ -1,5 +1,4 @@
using System.ComponentModel.DataAnnotations;
using LeafWeb.Core.Parsers;
using LeafWeb.Core.Utility;
namespace LeafWeb.Core.Models
@@ -9,6 +8,11 @@ namespace LeafWeb.Core.Models
/// </summary>
public class LeafInputData
{
[Key]
public int LeafInputDataId { get; set; }
public virtual LeafInputInfo LeafInputInfo { get; set; }
public int ListOrder { get; set; }
/// <summary>the data point No.</summary>
@@ -140,7 +144,5 @@ namespace LeafWeb.Core.Models
/// <summary>atmospheric O2 partial pressure</summary>
[ParseInfo(31, units: "Pa")]
public double? OxygenPress { get; set; }
public virtual LeafInput LeafInput { get; set; }
}
}