Example #1
0
        public void getReferralByProcessLevel()
        {
            var _id = _IPreparationRepository.getReferralByProcessLevel(0, 10, 70);

            Assert.IsTrue(_id != null, "failed");
        }
Example #2
0
 public DTO.Paged.PagedClinicalTriage getReferralByProcessLevel(int skip, int take, int processLevel)
 {
     return(Mapper.Map <MMC.Core.BL.Model.Paged.ClinicalTriage, DTO.Paged.PagedClinicalTriage>(_preparationRepository.getReferralByProcessLevel(skip, take, processLevel)));
 }