public void updateOwner(string dataOwnerID, OwnerListItem i) { this.firstDeviceID = i.firstDeviceID; this.lastDeviceID = i.lastDeviceID; this.dataOwnerID = dataOwnerID; updateItem(); }
public OwnerListItem getOwner(string dataOwnerID) { this.dataOwnerID = dataOwnerID; getItem(); OwnerListItem i = new OwnerListItem(); i.firstDeviceID = firstDeviceID; i.lastDeviceID = lastDeviceID; return(i); }