public LvTaskItem(NameIdentifiedInfo iil) { TaskInfo ti = (TaskInfo)iil; this.ProfileName = ti.profileName; this.CheckoutDelay = ti.checkoutDelay; this.TaskName = ti.name; }
public LvProxyItem(NameIdentifiedInfo nii) { ProxyInfo pi = (ProxyInfo)(nii); this.profileName = pi.name; this.ip = pi.ip; this.username = pi.username; }
public void addTask(NameIdentifiedInfo info) { tasksList.AddItem(info); }
public void addProfile(NameIdentifiedInfo info) { profilesList.AddItem(info); }
public LvProfileItem(NameIdentifiedInfo nii) { ProfileInfo pi = (ProfileInfo)nii; this.ProfileName = nii.name; }