Subversion Repositories SmartDukaan

Rev

Rev 4500 | Rev 5372 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4500 Rev 5361
Line 27... Line 27...
27
     * @return
27
     * @return
28
     */
28
     */
29
    public List<Scan> getScans(long inventoryItemId, ScanType scanType) {
29
    public List<Scan> getScans(long inventoryItemId, ScanType scanType) {
30
        return scanMapper.get(inventoryItemId, scanType);
30
        return scanMapper.get(inventoryItemId, scanType);
31
    }
31
    }
-
 
32
 
-
 
33
    /**
-
 
34
     * @param orderId
-
 
35
     */
-
 
36
    public List<Scan> getScans(long orderId) {
-
 
37
        return scanMapper.getScansFromOrderId(orderId);
-
 
38
    }
32
}
39
}