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