public bool Update() { DeviceTable AT = new DeviceTable(); AT.SetValueProperty(this); return(AT.Update()); }
public bool Delete() { //if (BusManagment.JBusInstallAndUnistallDevise.FindByDeviceCode(Code) || BusManagment.JBusDevise.FindByDeviceCode(Code)) //return false; DeviceTable AT = new DeviceTable(); AT.SetValueProperty(this); return(AT.Delete()); }
public int Insert() { DeviceTable AT = new DeviceTable(); AT.SetValueProperty(this); Code = AT.Insert(); return(Code); }