Exemple #1
0
 public async Task <DoctorOnlineSetLog> UpdateDoctorOnlineSetLog(DoctorOnlineSetLog DoctorOnlineSetLogInfo)
 {
     return(await _repository.UpdateAsync(DoctorOnlineSetLogInfo));
 }
Exemple #2
0
        public async Task <DoctorOnlineSetLog> CreateDoctorOnlineSetLog(DoctorOnlineSetLog DoctorOnlineSetLogInfo)
        {
            DoctorOnlineSetLogInfo.Id = await _repository.InsertAndGetIdAsync(DoctorOnlineSetLogInfo);

            return(DoctorOnlineSetLogInfo);
        }