26 lines
		
	
	
		
			724 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			724 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| using IRaCIS.Application.Contracts;
 | |
| using IRaCIS.Core.Infrastructure.Extention;
 | |
| 
 | |
| namespace IRaCIS.Application.Interfaces
 | |
| {
 | |
|     public interface IEducationService
 | |
|     {
 | |
| 
 | |
|         Task<DoctorEducationExperienceDTO> GetEducation(Guid doctorId);
 | |
| 
 | |
|         #region  教育经历
 | |
|         Task<IResponseOutput> AddOrUpdateEducationInfo(EducationCommand doctorEducationInfoViewModel);
 | |
| 
 | |
|         Task<IResponseOutput> DeleteEducationInfo(Guid doctorId);
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         #region 继续教育经历
 | |
|         Task<IResponseOutput> AddOrUpdatePostgraduateInfo(PostgraduateCommand doctorContinueLearningViewModel);
 | |
|         Task<IResponseOutput> DeletePostgraduateInfo(Guid doctorId);
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|     }
 | |
| } |