17 lines
449 B
Java
17 lines
449 B
Java
package com.interplug.qcast.biz.roofmaterial;
|
|
|
|
import com.interplug.qcast.biz.roofmaterial.dto.RoofMaterialResponse;
|
|
import java.util.List;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
@RequiredArgsConstructor
|
|
public class RoofMaterialService {
|
|
private final RoofMaterialMapper roofMapper;
|
|
|
|
public List<RoofMaterialResponse> getRoofMaterials() {
|
|
return roofMapper.getRoofMaterials();
|
|
}
|
|
}
|