public async Task <BenhNhan> Create(BenhNhan entity) { var benhNhan = _repositoryBenhNhan.FirstOrDefault(x => x.Id == entity.Id); if (benhNhan != null) { throw new UserFriendlyException("Da ton tai"); } else { return(await _repositoryBenhNhan.InsertAsync(entity)); } }
public void Update(BenhNhan entity) { _repositoryBenhNhan.Update(entity); }