예제 #1
0
        public void GetMyEducationModulesDetailByMEMID()
        {
            var result = _myEducationBL.GetMyEducationModulesDetailByMEMID(936);

            Assert.IsTrue(result != null, "Unable to get");
        }
예제 #2
0
 public DTO.MyEducationModuleDetail GetMyEducationModulesDetailByMEMID(int memID)
 {
     return(Mapper.Map <DTO.MyEducationModuleDetail>(_myEducation.GetMyEducationModulesDetailByMEMID(memID)));
 }