public async Task <DoctorServiceLog> UpdateDoctorServiceLog(DoctorServiceLog DoctorServiceLogInfo) { return(await _repository.UpdateAsync(DoctorServiceLogInfo)); }
public async Task <DoctorServiceLog> CreateDoctorServiceLog(DoctorServiceLog DoctorServiceLogInfo) { DoctorServiceLogInfo.Id = await _repository.InsertAndGetIdAsync(DoctorServiceLogInfo); return(DoctorServiceLogInfo); }