package org.rd.qm.impl;

import org.oasisopen.sca.annotation.Service;
import org.rd.qm.QueryService;

//import org.rd.qm.QueryController;
@Service(QueryService.class)
public class QueryServiceImpl implements QueryService {
	//@Reference(required=true)
	//private QueryController queryController;
	
	public String getPatients() {
		return "Got Patient!";
		//return queryController.getPatient(1);
	}
}
