Subversion Repositories SmartDukaan

Rev

Rev 22522 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.inventory;

import java.time.LocalDateTime;
import java.util.List;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.model.ItemCompleteLedgerModel;
import com.spice.profitmandi.common.model.ItemLedgerModel;

@Service
public interface ItemLedgerService {
        public List<ItemLedgerModel> getItemPurchase(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId);
        public List<ItemLedgerModel> getItemSale(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId);
        public List<ItemLedgerModel> getItemOpening(LocalDateTime startDateTime, int fofoId);
        public List<ItemLedgerModel> getItemClosing(LocalDateTime endDateTime, int fofoId);
        public List<ItemCompleteLedgerModel> getItemCompleteLedger(LocalDateTime startDateTime, LocalDateTime endDateTime, int fofoId);
}