Files
Spring-ReactNative-Project/src/main/java/com/example/backend/service/StateService.java
2025-01-03 10:31:40 +09:00

17 lines
439 B
Java

package com.example.backend.service;
import com.example.backend.entity.State;
import com.example.backend.repository.StateRepository;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
@Service
public class StateService {
@Autowired
private StateRepository stateRepository;
public State createState(State state) {
return stateRepository.save(state);
}
}