All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quincy.auth.service.impl.ZoneServiceImpl Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package com.quincy.auth.service.impl;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.quincy.auth.dao.CountryRepository;
import com.quincy.auth.entity.Country;
import com.quincy.auth.service.ZoneService;

@Service
public class ZoneServiceImpl implements ZoneService {
	@Autowired
	private CountryRepository countryRepository;

	@Override
	public List findCountries() {
		return countryRepository.findAll();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy