//LAzy Binding public DTO.Paged.PagedEducationModule GetAllPagedEducationModuleByEid(int educationid, int skip, int take) { return(Mapper.Map <DTO.Paged.PagedEducationModule>(_educationModule.GetAllPagedEducationModuleByEid(educationid, skip, take))); }
public void GetEducationModuleCountByeid() { var Edu = _educationModuleBL.GetAllPagedEducationModuleByEid(4, 0, 10); Assert.IsTrue(Edu != null, "Unable to find"); }