コード例 #1
0
 public async Task <DoctorEmployment> UpdateDoctorEmployment(DoctorEmployment DoctorFileApplyInfo)
 {
     return(await _repository.UpdateAsync(DoctorFileApplyInfo));
 }
コード例 #2
0
        public async Task <DoctorEmployment> CreateDoctorEmployment(DoctorEmployment DoctorFileApplyInfo)
        {
            DoctorFileApplyInfo.Id = await _repository.InsertAndGetIdAsync(DoctorFileApplyInfo);

            return(DoctorFileApplyInfo);
        }