Ejemplo n.º 1
0
        public BasicResponse <List <AutomaticArticulatedDeviceInfo> > GetAllAutomaticArticulatedDeviceCache(AutomaticArticulatedDeviceCacheGetAllRequest AutomaticArticulatedDeviceCacheRequest)
        {
            var responseStr = HttpClientHelper.Post(Webapi + "/v1/PointDefine/GetAllAutomaticArticulatedDeviceCache?token=" + Token, JSONHelper.ToJSONString(AutomaticArticulatedDeviceCacheRequest));

            return(JSONHelper.ParseJSONString <BasicResponse <List <AutomaticArticulatedDeviceInfo> > >(responseStr));
        }
 public BasicResponse <List <AutomaticArticulatedDeviceInfo> > GetAllAutomaticArticulatedDeviceCache(AutomaticArticulatedDeviceCacheGetAllRequest AutomaticArticulatedDeviceCacheRequest)
 {
     return(_PointDefineService.GetAllAutomaticArticulatedDeviceCache(AutomaticArticulatedDeviceCacheRequest));
 }
Ejemplo n.º 3
0
        public BasicResponse <List <AutomaticArticulatedDeviceInfo> > GetAllAutomaticArticulatedDeviceCache(AutomaticArticulatedDeviceCacheGetAllRequest AutomaticArticulatedDeviceCacheRequest)
        {
            var automaticArticulatedDeviceCache         = AutomaticArticulatedDeviceCache.AutomaticArticulatedDeviceCahceInstance.Query();
            var automaticArticulatedDeviceCacheResponse = new BasicResponse <List <AutomaticArticulatedDeviceInfo> >();

            automaticArticulatedDeviceCacheResponse.Data = automaticArticulatedDeviceCache;
            return(automaticArticulatedDeviceCacheResponse);
        }