private List <double> GetNegControlValues()
        {
            List <double> list = new List <double>();

            foreach (DX_GetPrimaryPlateControl_Result item in PrimaryPlateControl.Where(p => p.SubstanceID == "NegControl"))
            {
                list.Add(item.Value.ParseDouble());
            }

            return(list);
        }