Esempio n. 1
0
 internal PickingAreaLocationCountMatrixViewModel(PickingArea area)
 {
     _counts               = new BoolArrayTwoDimensional();
     AreaId                = area.AreaId;
     _counts[null, null]   = area.LocationCount;
     _counts[true, null]   = area.CountAssignedLocations;
     _counts[true, true]   = area.CountEmptyAssignedLocations;
     _counts[false, true]  = area.CountEmptyUnassignedLocations;
     _counts[null, true]   = area.CountEmptyLocations;
     _counts[true, false]  = area.CountNonemptyAssignedLocations;
     _counts[false, false] = area.CountNonemptyUnassignedLocations;
     _counts[false, null]  = area.CountUnassignedLocations;
     _counts[null, false]  = area.CountNonemptyLocations;
 }
Esempio n. 2
0
 public PickingAreaLocationCountMatrixViewModel()
 {
     _counts = new BoolArrayTwoDimensional();
 }