public async Task <DoctorWithdrawRecord> UpdateDoctorWithdrawRecord(DoctorWithdrawRecord DoctorWithdrawRecordInfo)
 {
     return(await _repository.UpdateAsync(DoctorWithdrawRecordInfo));
 }
        public async Task <DoctorWithdrawRecord> CreateDoctorWithdrawRecord(DoctorWithdrawRecord DoctorWithdrawRecordInfo)
        {
            DoctorWithdrawRecordInfo.Id = await _repository.InsertAndGetIdAsync(DoctorWithdrawRecordInfo);

            return(DoctorWithdrawRecordInfo);
        }