* @throws DAOException
*/
public static CSVFeedService getService(final ServiceType serviceType) throws DAOException {
CSVFeedService csvFeedService = null;
if (ServiceType.READER.equals(serviceType)) {
csvFeedService = new CSVFeedReaderService();
}
return csvFeedService;
}