using RDH.Data.Models; using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel; using System.Text; using System.Threading.Tasks; namespace RDH.Data.BLL { public partial interface IPatientInfoBLL { IEnumerable ListPatientInfo(); IEnumerable ListPatientInfoByPage(string strWhere, string orderby, int startIndex, int endIndex); List ListPatientInfoWithFormulary(DateTime? formularyTimeStart, DateTime? formularyTimeEnd); PatientInfo GetByPatientEncounterId(string encounterId); } }