Advertisement
Guest User

Untitled

a guest
Dec 20th, 2022
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. /**
  2. * This Source Code Form is subject to the terms of the Mozilla Public License,
  3. * v. 2.0. If a copy of the MPL was not distributed with this file, You can
  4. * obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
  5. * the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
  6. *
  7. * Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
  8. * graphic logo is a trademark of OpenMRS Inc.
  9. */
  10. package org.openmrs.module.drugmaster.api;
  11.  
  12. import java.util.List;
  13.  
  14. import org.openmrs.annotation.Authorized;
  15. import org.openmrs.api.APIException;
  16. import org.openmrs.api.OpenmrsService;
  17. import org.openmrs.module.drugmaster.AmpDrug;
  18. import org.openmrs.module.drugmaster.AmppDrug;
  19. import org.openmrs.module.drugmaster.Drugs;
  20. import org.openmrs.module.drugmaster.DrugmasterConfig;
  21. import org.openmrs.module.drugmaster.Item;
  22. import org.openmrs.module.drugmaster.VmpDrug;
  23. import org.openmrs.module.drugmaster.VmppDrug;
  24. import org.springframework.transaction.annotation.Transactional;
  25.  
  26. /**
  27. * The main service of this module, which is exposed for other modules. See
  28. * moduleApplicationContext.xml on how it is wired up.
  29. */
  30. public interface DrugmasterService extends OpenmrsService {
  31.  
  32. List<Drugs> GetVTMDrugs();
  33.  
  34. Drugs GetVMPDrugs(String id);
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement