Exemplo n.º 1
0
 public int SaveGeofence(int UserID, int DeviceID, string GeofenceName, string Remark, decimal Lat, decimal Lng, decimal Radius, int GeofenceID, int TypeID)
 {
     MgooGps.Geofence.SaveGeofenceRequest inValue = new MgooGps.Geofence.SaveGeofenceRequest();
     inValue.Body              = new MgooGps.Geofence.SaveGeofenceRequestBody();
     inValue.Body.UserID       = UserID;
     inValue.Body.DeviceID     = DeviceID;
     inValue.Body.GeofenceName = GeofenceName;
     inValue.Body.Remark       = Remark;
     inValue.Body.Lat          = Lat;
     inValue.Body.Lng          = Lng;
     inValue.Body.Radius       = Radius;
     inValue.Body.GeofenceID   = GeofenceID;
     inValue.Body.TypeID       = TypeID;
     MgooGps.Geofence.SaveGeofenceResponse retVal = ((MgooGps.Geofence.GeofenceAjaxSoap)(this)).SaveGeofence(inValue);
     return(retVal.Body.SaveGeofenceResult);
 }
Exemplo n.º 2
0
 MgooGps.Geofence.SaveGeofenceResponse MgooGps.Geofence.GeofenceAjaxSoap.SaveGeofence(MgooGps.Geofence.SaveGeofenceRequest request)
 {
     return(base.Channel.SaveGeofence(request));
 }