using HL_FristAidPlatform_DataBase; using HL_FristAidPlatform_Help; using HL_FristAidPlatform_IDataBase; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_Bussiness { public class T_Service_IllnessLevelBLL { private IT_Service_IllnessLevel IService = new T_Service_IllnessLevelDB(); public IllnessLevelModel GetIllnessLevelStatistics(string hospitalGuid, long systemModuleID, string startTime, string endTime, int flag) { return IService.GetIllnessLevelStatistics(hospitalGuid, systemModuleID, startTime, endTime, flag); } } }