电子药箱通讯服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819
  1. using RDH.Data.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.ServiceModel;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace RDH.Data.BLL
  9. {
  10. public partial interface IPatientInfoBLL
  11. {
  12. IEnumerable<PatientInfo> ListPatientInfo();
  13. IEnumerable<PatientInfo> ListPatientInfoByPage(string strWhere, string orderby, int startIndex, int endIndex);
  14. List<PatientInfo> ListPatientInfoWithFormulary(DateTime? formularyTimeStart, DateTime? formularyTimeEnd);
  15. PatientInfo GetByPatientEncounterId(string encounterId);
  16. }
  17. }