コード例 #1
0
 public async Task <DoctorCheck> UpdateDoctorCheck(DoctorCheck DoctorCheckInfo)
 {
     return(await _repository.UpdateAsync(DoctorCheckInfo));
 }
コード例 #2
0
        public async Task <DoctorCheck> CreateDoctorCheck(DoctorCheck DoctorCheckInfo)
        {
            DoctorCheckInfo.Id = await _repository.InsertAndGetIdAsync(DoctorCheckInfo);

            return(DoctorCheckInfo);
        }