// public ContractSupply contractSupply; public ReportPredictTable(ReportPredict reportPredict, Product product, Storehouse storehouse) { this.product = product; this.storehouse = storehouse; this.reportPredict = reportPredict; //this.contractSupply = contractSupply; }
public ReportBalanceTable(ReportBalance reportBalance, Product product, StoreCell storeCell, Storehouse storehouse) { this.product = product; this.storehouse = storehouse; this.storeCell = storeCell; this.reportBalance = reportBalance; }
public ContractMoveTable(ContractMove contractMove, StoreCell storeCellFrom, StoreCell storeCellTo, Storehouse storehouseFrom, Storehouse storehouseTo) { this.contractMove = contractMove; this.storeCellFrom = storeCellFrom; this.storeCellTo = storeCellTo; this.storehouseFrom = storehouseFrom; this.storehouseTo = storehouseTo; }
public bool queryAddStorehouse(Storehouse c) { if (LoginInfo.Position == 1 || LoginInfo.Position == 2 || LoginInfo.Position == 3) { using (DataBaseContext db = new DataBaseContext()) { try { db.Storehouses.Add(c); db.SaveChanges(); } catch (Exception e) { return(false); } return(true); } } return(false); }
public bool queryDeleteStorehouse(int Id) { if (LoginInfo.Position == 1 || LoginInfo.Position == 2 || LoginInfo.Position == 3) { using (DataBaseContext db = new DataBaseContext()) { try { Storehouse p = db.Storehouses.Find(Id); db.Storehouses.Remove(p); db.SaveChanges(); } catch (Exception e) { return(false); } return(true); } } return(false); }
public bool queryUpdateStorehouse(Storehouse c) { if (LoginInfo.Position == 1 || LoginInfo.Position == 2 || LoginInfo.Position == 3) { using (DataBaseContext db = new DataBaseContext()) { try { Storehouse p = db.Storehouses.Find(c.Id); p.Name = c.Name; p.Address = c.Address; db.SaveChanges(); } catch (Exception e) { return(false); } return(true); } } return(false); }
public StoreCellTable(StoreCell storeCell, Storehouse storehouse) { this.storeCell = storeCell; this.storehouse = storehouse; }
public ContractShipmentTable(ContractShipment contractShipment, StoreCell storeCellFrom, Storehouse storehouseFrom) { this.contractShipment = contractShipment; this.storeCellFrom = storeCellFrom; this.storehouseFrom = storehouseFrom; }