Пример #1
0
 public async Task <DoctorServiceLog> UpdateDoctorServiceLog(DoctorServiceLog DoctorServiceLogInfo)
 {
     return(await _repository.UpdateAsync(DoctorServiceLogInfo));
 }
Пример #2
0
        public async Task <DoctorServiceLog> CreateDoctorServiceLog(DoctorServiceLog DoctorServiceLogInfo)
        {
            DoctorServiceLogInfo.Id = await _repository.InsertAndGetIdAsync(DoctorServiceLogInfo);

            return(DoctorServiceLogInfo);
        }