Used to quickly fetch a various inventory related values
for a particular part / warehouse combination.
WARNING to developer API users:
There are potential concurrency issues using this value
in a multi-user scenario.
This value is intended for read only purposes when displaying in a user
interface. The actual value stored in the database is
subject to change by other users updating
inventory *after* this value is retrieved so it should not be used
in any calculations to affect inventory in the database,
those should be done through
the inventory updating methods provided in other classes which are
done within a database transaction with an IsolationLevel of Serializeable.
Namespace: GZTW.AyaNova.BLLAssembly: GZTW.AyaNova.BLL (in GZTW.AyaNova.BLL.dll) Version: 7.0.0.0 (7.0.0.0)
Syntax
| Visual Basic |
|---|
<SerializableAttribute> _
Public Class PartByWarehouseInventoryValuesFetcher _
Inherits ReadOnlyBase |
| Visual C++ |
|---|
[SerializableAttribute]
public ref class PartByWarehouseInventoryValuesFetcher : public ReadOnlyBase |
Inheritance Hierarchy
System..::..Object ReadOnlyBase GZTW.AyaNova.BLL..::..PartByWarehouseInventoryValuesFetcher
See Also