[HttpGet]// Return color choosen by user by type of line in JSON text
        public string GetUserColorSetting(int ID_User)
        {
            SQLServerManager SQL    = new SQLServerManager(SqlCnxStr);
            string           result = SQL.SP_GetUserColorSetting(SqlCnxStr, ID_User);

            return(result);
        }