public EducationModule GetEducationModuleByID(int educationModuleID)
 {
     return(Mapper.Map <EducationModule>(_educationModule.GetEducationModuleByID(educationModuleID)));
 }
Exemplo n.º 2
0
 public void getEducationModuleByID()
 {
     HCRGUniversity.Core.Data.Model.EducationModule educationModule = _educationModuleBL.GetEducationModuleByID(2);
     Assert.IsTrue(_educationModuleBL != null, "Unable to get");
 }