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

com.imsweb.algorithms.prcdauiho.PrcdaUihoDataProvider Maven / Gradle / Ivy

/*
 * Copyright (C) 2013 Information Management Services, Inc.
 */
package com.imsweb.algorithms.prcdauiho;

/**
 * The purpose of the PrcdaUihoDataProvider is to get PRCDA, UIHO, and UIHO facility for
 * the provided state of dx and county of dx either from the database or csv lookup based on the
 * implementation
 * 

* Created on Aug 12, 2019 by howew * @author howew */ public interface PrcdaUihoDataProvider { /** * Returns PRCDA for provided state of dx and county of dx. *

* Created Aug 12, 2019 by howew * @param state state at DX * @param county county at DX * @return the corresponding PRCDA value */ String getPRCDA(String state, String county); /** * Returns UIHO for provided state of dx and county of dx. *

* Created Aug 12, 2019 by howew * @param state state at DX * @param county county at DX * @return the corresponding UIHO value */ String getUIHO(String state, String county); /** * Returns UIHO Facility for provided state of dx and county of dx. *

* Created Aug 12, 2019 by howew * @param state state at DX * @param county county at DX * @return the corresponding UIHO Facility */ String getUIHOFacility(String state, String county); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy