public IEnumerable <EducationFormat> GetEducationFormatNotAssociateWithEducation(int educationID)
 {
     return(Mapper.Map <IEnumerable <EducationFormat> >(_educationFormat.GetEducationFormatNotAssociateWithEducation(educationID)));
 }
        public void GetEducationFormatNotAssociateWithEducation()
        {
            IEnumerable <HCRGUniversity.Core.Data.Model.EducationFormat> educationFormat = _educationFormatBL.GetEducationFormatNotAssociateWithEducation(1);

            Assert.IsTrue(educationFormat != null, "Unable to get");
        }