Ejemplo n.º 1
0
        public SelectListModelUpload GetSelectList()
        {
            var obj = FunctionHelper.Get_Json_Object <SelectListModelUpload>(BaseURL + "getselectlist");

            return(obj);
        }
Ejemplo n.º 2
0
        public List <tblCustomerExtend> GetCustomerList(string key, string customergroupid, string accesslevelids)
        {
            var obj = FunctionHelper.Get_Json_Object <List <tblCustomerExtend> >(BaseURL + $"getcustomerlist?key={key}&customergroupid={customergroupid}&accesslevelids={accesslevelids}");

            return(obj);
        }
Ejemplo n.º 3
0
 public List <AccessControllerAPI> ListController(string key = "", string computers = "")
 {
     return(FunctionHelper.Get_Json_Object <List <AccessControllerAPI> >(BaseURL + $"listcontroller?key={key}&computers={computers}"));
 }