package com.jasamedika.medifirst2000.service; import java.util.List; import java.util.Map; import com.jasamedika.medifirst2000.dto.MapAlatToProdukToBhpDto; public interface MappingBahanToMesinService { List> findMesinCuci(); Map findKapasitasMesinCuci(Integer alatId); List> findProsesCuci(); //cuci berwarna, cuci putih, cuci operasi List> findBahanCuci(); //deterjen,molto dll List> findSatuanBahan(); //satuan laundry List> saveMappingBahanToMesin(List dtos); List> getAll(); Map getById(Integer mapAlatToProdukBhpId); List> findProsesCuciCuci(); List> findProsesCuciBilas(); List> findProsesCuciKering(); }