aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/repository/NRCellCURepository.java
blob: 48903438fc04ea2750886b5b1a42f2be1af4ed72 (plain)
1
2
3
4
5
6
7
8
9
10
package org.onap.ransim.rest.api.repository;

import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import org.onap.ransim.rest.api.models.NRCellCU;

@Repository
public interface NRCellCURepository extends CrudRepository<NRCellCU,Integer>{
	
}