public async Task <DoctorEmployment> UpdateDoctorEmployment(DoctorEmployment DoctorFileApplyInfo)
 {
     return(await _repository.UpdateAsync(DoctorFileApplyInfo));
 }
        public async Task <DoctorEmployment> CreateDoctorEmployment(DoctorEmployment DoctorFileApplyInfo)
        {
            DoctorFileApplyInfo.Id = await _repository.InsertAndGetIdAsync(DoctorFileApplyInfo);

            return(DoctorFileApplyInfo);
        }