/// <summary>
        /// Ensures that an object with the specified name exists, while creating other properties are set to their default values
        /// </summary>
        /// <param name="i_sName">Name</param>
        /// <returns>cQuadrantMeasure object</returns>
        public static cQuadrantMeasure CreateIfRequiredAndGet(string i_sName)
        {
            cQuadrantMeasure oObj = cQuadrantMeasure.Get_Name(i_sName);

            if (oObj == null)
            {
                oObj       = cQuadrantMeasure.Create();
                oObj.sName = i_sName;
                oObj.Save();
            }
            return(oObj);
        }