public int Insert(OfficeAccessoriesInventoryVO vo) { int lastInsertId = 0; try { lastInsertId = b.Insert("OfficeAccessories_Inventory", b.ConvertColName(vo), b.ConvertValueList(vo)); } catch (Exception ex) { throw ex; } return(lastInsertId); }
public int Create(OfficeAccessoriesInventoryVO vo) { int id; if (!dao.isExist(vo.Id.ToString())) { id = dao.Insert(vo); } else { id = dao.Update(vo); } return(id); }