Пример #1
0
        [HttpGet]// Load every data of the order specified with the configuration of the current view
        public string GetCustomJsonOrder(int ID_Order, int ID_View)
        {
            SQLServerManager SQL          = new SQLServerManager(SqlCnxStr);
            string           JsonTreeview = SQL.SP_GetCustomJsonOrder(SqlCnxStr, ID_Order, ID_View);

            return(JsonTreeview);
        }