public EducationService(IEducation education, IProfession profession, IEducationProfession educationProfession, IEducationFormat educationFormat, IEducationFormatAvailable educationFormatAvailable, IEducationCredential educationCredential)
 {
     _education                = education;
     _profession               = profession;
     _educationProfession      = educationProfession;
     _educationFormat          = educationFormat;
     _educationFormatAvailable = educationFormatAvailable;
     _educationCredential      = educationCredential;
 }
 public void EducationProfessionInitialize()
 {
     _educationProfessionRepository = new EducationProfessionRepository(new Core.Base.Data.SqlServer.Factory.BaseContextFactory <HCRGUniversity.Core.Data.SqlServer.HCRGUniversityDBContext>());
     _educationProfessionBL         = new EducationProfessionImpl(_educationProfessionRepository);
 }