public Boolean UpdateDevice(string prevoiusName, string name, double price, double quantity, double total) { Boolean check = false; devicesStore = new DevicesStore(); devicesStoreDB = new DevicesStoreDB(); if (prevoiusName.Equals("NOT CHANAGEE")) { devicesStore.setName(name); } else { devicesStore.setName(name); check = devicesStoreDB.checkDevice(devicesStore); devicesStore.setName(prevoiusName); } devicesStore.setPrice(price); devicesStore.setQuantity(quantity); devicesStore.setTotal(total); if (check == true) { return(false); } else { int ID = devicesStoreDB.selectDeviceId(devicesStore); devicesStore.setID(ID); devicesStore.setName(name); devicesStoreDB.update(devicesStore); return(true); } }
public void deleteDevices(string deviceName) { devicesStore = new DevicesStore(); devicesStoreDB = new DevicesStoreDB(); devicesStore.setName(deviceName); devicesStoreDB.delete(devicesStore); }
public double getQuantity(string itemName) { devicesStore = new DevicesStore(); devicesStoreDB = new DevicesStoreDB(); devicesStore.setName(itemName); devicesStoreDB.selectQuantity(devicesStore); return(devicesStore.getQuantity()); }
public void updateQuantityPlus(string deviceName, double quantity) { devicesStore = new DevicesStore(); devicesStoreDB = new DevicesStoreDB(); devicesStore.setName(deviceName); devicesStore.setQuantity(quantity); devicesStoreDB.updateQuantityPlus(devicesStore); }
public double getDevicePrice(string name) { devicesStoreDB = new DevicesStoreDB(); devicesStore = new DevicesStore(); devicesStore.setName(name); devicesStoreDB.selectPrice(devicesStore); return(devicesStore.getPrice()); }
public bool checkItemInStore(string itemName) { devicesStore = new DevicesStore(); devicesStoreDB = new DevicesStoreDB(); devicesStore.setName(itemName); bool check = devicesStoreDB.checkDevice(devicesStore); return(check); }
public bool checkItemQuantity(string itemName, double quantity) { devicesStore = new DevicesStore(); devicesStoreDB = new DevicesStoreDB(); devicesStore.setName(itemName); devicesStoreDB.selectQuantity(devicesStore); if (quantity > devicesStore.getQuantity()) { return(false); } else { return(true); } }
public Boolean insertDevices(string name, double price, double quantity, double total) { devicesStore = new DevicesStore(); devicesStoreDB = new DevicesStoreDB(); devicesStore.setName(name); devicesStore.setPrice(price); devicesStore.setQuantity(quantity); devicesStore.setTotal(total); check = devicesStoreDB.checkDevice(devicesStore); if (check == true) { return(false); } else { devicesStoreDB.insert(devicesStore); return(true); } }