Subversion Repositories SmartDukaan

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.inventory;

import java.util.List;
import java.util.Optional;

import org.springframework.stereotype.Service;

@Service
public interface ItemBucketService {
        List<Bucket> getBuckets(Optional<Boolean> active);
        List<ItemQuantityPojo> getBucketDetails(int bucketId);
}