public bool PutdataintoGlobalData(InputData InputDataValue)
        {
            //把InputDataValue的值放进Globaldata里面
            //先兆
            GlobalData.HeadacheAnnotation.Clear();
            foreach (HeadacheAura aura in InputDataValue.m_HeadacheAuraList)
            {
                HeadachePlus2 headacheaura = new HeadachePlus2();
                headacheaura.Aspect = "HeadacheAura";
                if (aura == HeadacheAura.Hemi_Visual_Aura)
                {
                    headacheaura.AspectName = "单侧视觉";
                    headacheaura.Note = "单侧视觉先兆";

                }
                else if (aura == HeadacheAura.Bilateral_Visual_Aura)
                {
                    headacheaura.AspectName = "双侧视觉";
                    headacheaura.Note = "双侧视觉先兆";

                }
                else if (aura == HeadacheAura.Feeling_Aura)
                {
                    headacheaura.AspectName = "感觉";
                    headacheaura.Note = "感觉先兆";

                }
                else if (aura == HeadacheAura.Allolalia)
                {
                    headacheaura.AspectName = "语言障碍";
                    headacheaura.Note = "言语障碍";

                }
                else if (aura == HeadacheAura.Dyscinesia)
                {
                    headacheaura.AspectName = "运动障碍";
                    headacheaura.Note = "运动障碍";

                }
                GlobalData.HeadacheAnnotation.HeadacheAura.Add(headacheaura);

            }
            //头痛每次持续时间
            GlobalData.HeadacheAnnotation.LastTimeBefore = InputDataValue.m_nHeadache_Duration_PerTime;
            //头痛每次持续时间的单位
            GlobalData.HeadacheAnnotation.LastTimeBeforeUnit = InputDataValue.m_nHeadache_Duration_PerTime_Unit;

            //头痛类型
            GlobalData.HeadacheAnnotation.HeadacheType = InputDataValue.m_nHeadahceProperty.ToString();
            //头痛总次数
            GlobalData.HeadacheAnnotation.HeadacheTrait = InputDataValue.m_nHeadache_TotalNumber.ToString();

            //头痛总持续时间
            GlobalData.HeadacheAnnotation.nHeadahce_Duration = InputDataValue.m_nHeadache_Duration;

            //头痛每月持续时间
            if (InputDataValue.m_nHeadache_Monthly_Duration < 1)
            {
                GlobalData.HeadacheAnnotation.MHeadacheday = "0";
            }
            else if (InputDataValue.m_nHeadache_Monthly_Duration >= 1 && InputDataValue.m_nHeadache_Monthly_Duration <= 15)
            {
                GlobalData.HeadacheAnnotation.MHeadacheday = "9";
            }
            else if(InputDataValue.m_nHeadache_Monthly_Duration > 15)
            {
                GlobalData.HeadacheAnnotation.MHeadacheday = "20";
            }

            GlobalData.PreviousTreatment.PreviousAcesodyneDrug.Clear();

            if (InputDataValue.m_nTriptan_Drugin_Monthly !=0 && InputDataValue.m_nTriptan_Total_Drugin_Duration != 0)
            {
                 Drug drug = new Drug();
                 drug.DrugEffect = InputDataValue.m_nTriptan_Drugin_Monthly.ToString();        //曲普坦类每月服药时长;
                 drug.DSideEffect = InputDataValue.m_nTriptan_Total_Drugin_Duration.ToString();//曲普坦类总服药时长;
                 GlobalData.PreviousTreatment.PreviousAcesodyneDrug.Add(drug);
            }

            if (InputDataValue.m_nNon_Triptan_Total_Drugin_Duration != 0 && InputDataValue.m_nNon_Triptan_Drugin_Monthly != 0 )
            {
                Drug drug = new Drug();
                drug.DSideEffect = InputDataValue.m_nNon_Triptan_Total_Drugin_Duration.ToString();          //非曲普坦类药物总服药时长
                drug.DrugEffect = InputDataValue.m_nNon_Triptan_Drugin_Monthly.ToString();                  //非曲普坦类药物每月服药时长
                GlobalData.PreviousTreatment.PreviousAcesodyneDrug.Add(drug);
            }

            if (InputDataValue.m_HeadacheLocation == HeadacheLocation.Uni_Pain)
            {
                GlobalData.HeadacheAnnotation.Unilateral = "Yes";
            }

            if (InputDataValue.m_HeadacheLocation == HeadacheLocation.Bi_Pain)
            {
                GlobalData.HeadacheAnnotation.Bilateral = "Yes";
            }

            if (InputDataValue.m_bPeriodism == true)
            {
                GlobalData.HeadacheAnnotation.TimeFixed = "Yes";
            }
            else
            {
                GlobalData.HeadacheAnnotation.TimeFixed = "No";
            }

            if (InputDataValue.m_bWorsen_By_Physicial_Activity == false)
            {
                GlobalData.HeadacheAnnotation.WorsenDegree = "从无";
            }
            else
            {
                GlobalData.HeadacheAnnotation.WorsenDegree = "else";
            }

            if (InputDataValue.m_bDaily_Headache == true)
            {
                GlobalData.HeadacheAnnotation.HeadacheEveryDay = "是";
            }

            if (InputDataValue.m_bDaily_Headache == false)
            {
                GlobalData.HeadacheAnnotation.HeadacheEveryDay = "否";
            }

            if (InputDataValue.m_nHeadacheDegree == HeadacheDegree.Mild)
            {
                GlobalData.HeadacheAnnotation.Markqualitative = "轻";
            }
            else if(InputDataValue.m_nHeadacheDegree == HeadacheDegree.Middle)
            {
                GlobalData.HeadacheAnnotation.Markqualitative = "中";
            }
            else if (InputDataValue.m_nHeadacheDegree == HeadacheDegree.Heavy)
            {
                GlobalData.HeadacheAnnotation.Markqualitative = "重";
            }

            if(InputDataValue.m_nHeadahceProperty == HeadacheProperty.Pulse_Pain)
            {
                GlobalData.HeadacheAnnotation.HeadacheType = "搏动";
            }
            else if(InputDataValue.m_nHeadahceProperty == HeadacheProperty.Pressure_Pain)
            {
                GlobalData.HeadacheAnnotation.HeadacheType = "压迫";
            }
            else if(InputDataValue.m_nHeadahceProperty == HeadacheProperty.Electric_Shock_Like_Pain)
            {
                GlobalData.HeadacheAnnotation.HeadacheType = "过电";
            }
            else if (InputDataValue.m_nHeadahceProperty == HeadacheProperty.Other)
            {
                GlobalData.HeadacheAnnotation.HeadacheType = "其他";
            }

            foreach (HeadacheAssociatedSymptoms AssociatedSymptoms in InputDataValue.m_HeadacheAssociatedSymptonList)
            {
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Nausea)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("恶心");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Vomit)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("呕吐");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Fair_Of_Sound)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("畏声");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Fire_Of_Light)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("畏光");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Blocked_or_Watery_Nose)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧鼻塞/流涕");
                }
                if(AssociatedSymptoms == HeadacheAssociatedSymptoms.Conjunctival_congestion_or_Tears)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧结膜充血/流泪");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Dysphoria)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("感觉不安或躁动");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Frontal_facial_Sweating)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧前额/面部出汗");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Ipsilateral_Heyelids_Swelling)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧眼睑水肿");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Miosis_or_Blepharoptosis)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧眼睑下垂");
                }

            }

            //             foreach (HeadacheAura aura in InputDataValue.m_HeadacheAuraList)
            //             {
            //                 if(aura == HeadacheAura.Allolalia)
            //                 {
            //                     HeadachePlus2 auravision = new HeadachePlus2();
            //                     auravision.AspectName = "语言障碍";
            //                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
            //                 }
            //                 if(aura == HeadacheAura.Bilateral_Visual_Aura)
            //                 {
            //                     HeadachePlus2 auravision = new HeadachePlus2();
            //                     auravision.AspectName = "双侧视觉";
            //                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
            //                 }
            //                 if(aura == HeadacheAura.Dyscinesia)
            //                 {
            //                     HeadachePlus2 auravision = new HeadachePlus2();
            //                     auravision.AspectName = "运动障碍";
            //                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
            //                 }
            //                 if(aura == HeadacheAura.Feeling_Aura)
            //                 {
            //                     HeadachePlus2 auravision = new HeadachePlus2();
            //                     auravision.AspectName = "感觉";
            //                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
            //                 }
            //                 if(aura == HeadacheAura.Hemi_Visual_Aura)
            //                 {
            //                     HeadachePlus2 auravision = new HeadachePlus2();
            //                     auravision.AspectName = "单侧视觉";
            //                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
            //                 }
            //             }

            return true;
        }
        public bool PutdataintoGlobalData(InputData InputDataValue)
        {
            //把InputDataValue的值放进Globaldata里面
            //先兆
            GlobalData.HeadacheAnnotation.Clear();
            foreach (HeadacheAura aura in InputDataValue.m_HeadacheAuraList)
            {
                HeadachePlus2 headacheaura = new HeadachePlus2();
                headacheaura.Aspect = "HeadacheAura";
                if (aura == HeadacheAura.Hemi_Visual_Aura)
                {
                    headacheaura.AspectName = "单侧视觉";
                    headacheaura.Note       = "单侧视觉先兆";
                }
                else if (aura == HeadacheAura.Bilateral_Visual_Aura)
                {
                    headacheaura.AspectName = "双侧视觉";
                    headacheaura.Note       = "双侧视觉先兆";
                }
                else if (aura == HeadacheAura.Feeling_Aura)
                {
                    headacheaura.AspectName = "感觉";
                    headacheaura.Note       = "感觉先兆";
                }
                else if (aura == HeadacheAura.Allolalia)
                {
                    headacheaura.AspectName = "语言障碍";
                    headacheaura.Note       = "言语障碍";
                }
                else if (aura == HeadacheAura.Dyscinesia)
                {
                    headacheaura.AspectName = "运动障碍";
                    headacheaura.Note       = "运动障碍";
                }
                GlobalData.HeadacheAnnotation.HeadacheAura.Add(headacheaura);
            }
            //头痛每次持续时间
            GlobalData.HeadacheAnnotation.LastTimeBefore = InputDataValue.m_nHeadache_Duration_PerTime;
            //头痛每次持续时间的单位
            GlobalData.HeadacheAnnotation.LastTimeBeforeUnit = InputDataValue.m_nHeadache_Duration_PerTime_Unit;

            //头痛类型
            GlobalData.HeadacheAnnotation.HeadacheType = InputDataValue.m_nHeadahceProperty.ToString();
            //头痛总次数
            GlobalData.HeadacheAnnotation.HeadacheTrait = InputDataValue.m_nHeadache_TotalNumber.ToString();


            //头痛总持续时间
            GlobalData.HeadacheAnnotation.nHeadahce_Duration = InputDataValue.m_nHeadache_Duration;

            //头痛每月持续时间
            if (InputDataValue.m_nHeadache_Monthly_Duration < 1)
            {
                GlobalData.HeadacheAnnotation.MHeadacheday = "0";
            }
            else if (InputDataValue.m_nHeadache_Monthly_Duration >= 1 && InputDataValue.m_nHeadache_Monthly_Duration <= 15)
            {
                GlobalData.HeadacheAnnotation.MHeadacheday = "9";
            }
            else if (InputDataValue.m_nHeadache_Monthly_Duration > 15)
            {
                GlobalData.HeadacheAnnotation.MHeadacheday = "20";
            }

            GlobalData.PreviousTreatment.PreviousAcesodyneDrug.Clear();

            if (InputDataValue.m_nTriptan_Drugin_Monthly != 0 && InputDataValue.m_nTriptan_Total_Drugin_Duration != 0)
            {
                Drug drug = new Drug();
                drug.DrugEffect  = InputDataValue.m_nTriptan_Drugin_Monthly.ToString();        //曲普坦类每月服药时长;
                drug.DSideEffect = InputDataValue.m_nTriptan_Total_Drugin_Duration.ToString(); //曲普坦类总服药时长;
                GlobalData.PreviousTreatment.PreviousAcesodyneDrug.Add(drug);
            }

            if (InputDataValue.m_nNon_Triptan_Total_Drugin_Duration != 0 && InputDataValue.m_nNon_Triptan_Drugin_Monthly != 0)
            {
                Drug drug = new Drug();
                drug.DSideEffect = InputDataValue.m_nNon_Triptan_Total_Drugin_Duration.ToString();          //非曲普坦类药物总服药时长
                drug.DrugEffect  = InputDataValue.m_nNon_Triptan_Drugin_Monthly.ToString();                 //非曲普坦类药物每月服药时长
                GlobalData.PreviousTreatment.PreviousAcesodyneDrug.Add(drug);
            }

            if (InputDataValue.m_HeadacheLocation == HeadacheLocation.Uni_Pain)
            {
                GlobalData.HeadacheAnnotation.Unilateral = "Yes";
            }

            if (InputDataValue.m_HeadacheLocation == HeadacheLocation.Bi_Pain)
            {
                GlobalData.HeadacheAnnotation.Bilateral = "Yes";
            }

            if (InputDataValue.m_bPeriodism == true)
            {
                GlobalData.HeadacheAnnotation.TimeFixed = "Yes";
            }
            else
            {
                GlobalData.HeadacheAnnotation.TimeFixed = "No";
            }

            if (InputDataValue.m_bWorsen_By_Physicial_Activity == false)
            {
                GlobalData.HeadacheAnnotation.WorsenDegree = "从无";
            }
            else
            {
                GlobalData.HeadacheAnnotation.WorsenDegree = "else";
            }

            if (InputDataValue.m_bDaily_Headache == true)
            {
                GlobalData.HeadacheAnnotation.HeadacheEveryDay = "是";
            }

            if (InputDataValue.m_bDaily_Headache == false)
            {
                GlobalData.HeadacheAnnotation.HeadacheEveryDay = "否";
            }

            if (InputDataValue.m_nHeadacheDegree == HeadacheDegree.Mild)
            {
                GlobalData.HeadacheAnnotation.Markqualitative = "轻";
            }
            else if (InputDataValue.m_nHeadacheDegree == HeadacheDegree.Middle)
            {
                GlobalData.HeadacheAnnotation.Markqualitative = "中";
            }
            else if (InputDataValue.m_nHeadacheDegree == HeadacheDegree.Heavy)
            {
                GlobalData.HeadacheAnnotation.Markqualitative = "重";
            }

            if (InputDataValue.m_nHeadahceProperty == HeadacheProperty.Pulse_Pain)
            {
                GlobalData.HeadacheAnnotation.HeadacheType = "搏动";
            }
            else if (InputDataValue.m_nHeadahceProperty == HeadacheProperty.Pressure_Pain)
            {
                GlobalData.HeadacheAnnotation.HeadacheType = "压迫";
            }
            else if (InputDataValue.m_nHeadahceProperty == HeadacheProperty.Electric_Shock_Like_Pain)
            {
                GlobalData.HeadacheAnnotation.HeadacheType = "过电";
            }
            else if (InputDataValue.m_nHeadahceProperty == HeadacheProperty.Other)
            {
                GlobalData.HeadacheAnnotation.HeadacheType = "其他";
            }

            foreach (HeadacheAssociatedSymptoms AssociatedSymptoms in InputDataValue.m_HeadacheAssociatedSymptonList)
            {
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Nausea)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("恶心");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Vomit)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("呕吐");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Fair_Of_Sound)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("畏声");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Fire_Of_Light)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("畏光");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Blocked_or_Watery_Nose)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧鼻塞/流涕");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Conjunctival_congestion_or_Tears)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧结膜充血/流泪");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Dysphoria)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("感觉不安或躁动");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Frontal_facial_Sweating)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧前额/面部出汗");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Ipsilateral_Heyelids_Swelling)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧眼睑水肿");
                }
                if (AssociatedSymptoms == HeadacheAssociatedSymptoms.Miosis_or_Blepharoptosis)
                {
                    GlobalData.HeadacheAnnotation.HeadacheCompanionSympton.Add("同侧眼睑下垂");
                }
            }



//             foreach (HeadacheAura aura in InputDataValue.m_HeadacheAuraList)
//             {
//                 if(aura == HeadacheAura.Allolalia)
//                 {
//                     HeadachePlus2 auravision = new HeadachePlus2();
//                     auravision.AspectName = "语言障碍";
//                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
//                 }
//                 if(aura == HeadacheAura.Bilateral_Visual_Aura)
//                 {
//                     HeadachePlus2 auravision = new HeadachePlus2();
//                     auravision.AspectName = "双侧视觉";
//                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
//                 }
//                 if(aura == HeadacheAura.Dyscinesia)
//                 {
//                     HeadachePlus2 auravision = new HeadachePlus2();
//                     auravision.AspectName = "运动障碍";
//                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
//                 }
//                 if(aura == HeadacheAura.Feeling_Aura)
//                 {
//                     HeadachePlus2 auravision = new HeadachePlus2();
//                     auravision.AspectName = "感觉";
//                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
//                 }
//                 if(aura == HeadacheAura.Hemi_Visual_Aura)
//                 {
//                     HeadachePlus2 auravision = new HeadachePlus2();
//                     auravision.AspectName = "单侧视觉";
//                     GlobalData.HeadacheAnnotation.HeadacheAura.Add(auravision);
//                 }
//             }

            return(true);
        }