public void AddEducationFormat()
        {
            DLModel.EducationFormatType = "sdfsdfsdf";

            int result = _educationFormatBL.AddEducationFormat(DLModel);

            Assert.IsTrue(result > 0, "Unable to Add");
        }
 //education format methods...hp
 public int AddEducationFormat(EducationFormat educationFormat)
 {
     return(_educationFormat.AddEducationFormat(Mapper.Map <DTO.EducationFormat, HCRGUniversity.Core.Data.Model.EducationFormat>(educationFormat)));
 }