Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 25874 |
amit.gupta |
1 |
package com.spice.profitmandi.service.inventory;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
import java.util.Optional;
|
|
|
5 |
|
|
|
6 |
import org.springframework.stereotype.Service;
|
|
|
7 |
|
|
|
8 |
@Service
|
|
|
9 |
public interface ItemBucketService {
|
|
|
10 |
List<Bucket> getBuckets(Optional<Boolean> active);
|
|
|
11 |
List<ItemQuantityPojo> getBucketDetails(int bucketId);
|
|
|
12 |
}
|