public void GetProfessionNotAssociateWithEducation()
        {
            IEnumerable <HCRGUniversity.Core.Data.Model.Profession> profession = _professionBL.GetProfessionNotAssociateWithEducation(61);

            Assert.IsTrue(profession != null, "Unable to get");
        }
 public IEnumerable <Profession> GetProfessionNotAssociateWithEducation(int educationID)
 {
     return(Mapper.Map <IEnumerable <Profession> >(_profession.GetProfessionNotAssociateWithEducation(educationID)));
 }