penghapusan instansiasi service bios

This commit is contained in:
salmanoe 2021-11-29 07:55:20 +07:00
parent e28f120d30
commit 8c0d081c4d

View File

@ -1,22 +1,13 @@
package com.jasamedika.medifirst2000.controller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.jasamedika.medifirst2000.controller.base.LocaleController;
import com.jasamedika.medifirst2000.service.IndikatorBIOSService;
import com.jasamedika.medifirst2000.vo.IndikatorBIOSVO;
@RestController
@RequestMapping("/indikator-bios")
public class IndikatorBIOSController extends LocaleController<IndikatorBIOSVO>{
private static final Logger LOGGER = LoggerFactory.getLogger(IndikatorBIOSController.class);
@Autowired
private IndikatorBIOSService indikatorBIOSService;
}