Skip to content

Commit

Permalink
LikeLion-12th-SKHU#50 refactor: 승현코드 커밋수정
Browse files Browse the repository at this point in the history
Co-authored-by: soohyun <[email protected]>
  • Loading branch information
sss4920 committed Sep 5, 2024
1 parent 070be70 commit 380af1d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,20 @@
import com.likelion.neighbor.insurance.domain.DentalInsurance;
import com.likelion.neighbor.insurance.service.DentalInsuranceService;
import jakarta.validation.Valid;
import lombok.RequiredArgsConstructor;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;

import java.util.List;

@RestController
@RequiredArgsConstructor
@RequestMapping("/api/dental-insurances")
public class DentalInsuranceController {

@Autowired
private DentalInsuranceService dentalInsuranceService;
private final DentalInsuranceService dentalInsuranceService;

@GetMapping
public ResponseEntity<DentalInsuranceInfoListResDto> getAllDentalInsurances() {
Expand Down

0 comments on commit 380af1d

Please sign in to comment.