public ProviderEducationDTO GetProviderEducationByEducationId(long providerid, long educationid)
 {
     ProviderEducationdal = new ProviderEducationDAL();
     return(ProviderEducationdal.GetProviderEducationByEducationId(providerid, educationid));
 }
 public void DeleteProviderEducation(long providerid, long educationid)
 {
     ProviderEducationdal = new ProviderEducationDAL();
     ProviderEducationdal.DeleteProviderEducation(providerid, educationid);
 }
 public List <ProviderEducationDTO> GetProviderEducationByProviderId(long ProviderId)
 {
     ProviderEducationdal = new ProviderEducationDAL();
     return(ProviderEducationdal.GetProviderEducationByProviderId(ProviderId));
 }
 public int UpdateProviderEducation(ProviderEducationDTO providereducation)
 {
     ProviderEducationdal = new ProviderEducationDAL();
     return(ProviderEducationdal.UpdateProviderEducation(providereducation));
 }
 public long AddProviderEducation(ProviderEducationDTO providereducation)
 {
     ProviderEducationdal = new ProviderEducationDAL();
     return(ProviderEducationdal.AddProviderEducation(providereducation));
 }