Exemplo n.º 1
0
 public void updateOwner(string dataOwnerID, OwnerListItem i)
 {
     this.firstDeviceID = i.firstDeviceID;
     this.lastDeviceID  = i.lastDeviceID;
     this.dataOwnerID   = dataOwnerID;
     updateItem();
 }
Exemplo n.º 2
0
        public OwnerListItem getOwner(string dataOwnerID)
        {
            this.dataOwnerID = dataOwnerID;
            getItem();
            OwnerListItem i = new OwnerListItem();

            i.firstDeviceID = firstDeviceID;
            i.lastDeviceID  = lastDeviceID;
            return(i);
        }