using System.Collections.Generic; using LeafWeb.Core.Utility; namespace LeafWeb.Core.Entities { /// /// Descriptive information about the investigator, /// contact information, the site,the sample leaf and its general environmental condition /// public class LeafInputData { public int Id { get; set; } public virtual LeafInputDataSite Site { get; set; } public virtual LeafInputDataPhotosynthetic Photosynthetic { get; set; } public virtual ICollection Data { get; set; } [ParseInfo(1, exampleValue: "First and last name")] public string InvestigatorName { get; set; } [ParseInfo(2, exampleValue: "Your email / mail addresses")] public string ContactInformation { get; set; } [ParseInfo(3, alternateTitle: "Site name in full", exampleValue: "Your site's identifier / name")] public string SiteName { get; set; } [ParseInfo(4, exampleValue: "Mixed forest / grasslands / croplands/ etc")] public string VegetationType { get; set; } [ParseInfo(5, exampleValue: "Soil type at your site")] public string SoilType { get; set; } [ParseInfo(6, exampleValue: "List of major species at the site")] public string MajorSpecies { get; set; } [ParseInfo(7, alternateTitle: "Sample leaf light environment", exampleValue: "The general light environment in which the leaf is in (e.g. heavily shaded from above)")] public string SampleLeafLightEnv { get; set; } [ParseInfo(8, exampleValue: "Indicate whether there is water stress at the time of sampling")] public string WaterStressAssessment { get; set; } [ParseInfo(9, exampleValue: "For example - Licor-6400")] public string InstrumentUsed { get; set; } [ParseInfo(10, exampleValue: "Any extra information you feel would be helpful to put the sampled leaf in context")] public string ExtraInfo { get; set; } } }