Пример #1
0
        [HttpGet] // Return the list of the table (that is accessible by the user)
        public string GetViewList(int ID_User)
        {
            SQLServerManager SQL         = new SQLServerManager(SqlCnxStr);
            string           primaryList = SQL.SP_GetViewList(SqlCnxStr, ID_User);

            return(primaryList);
        }