コード例 #1
0
 public async Task <YaeherPatientCollection> UpdateYaeherPatientCollection(YaeherPatientCollection YaeherPatientCollectionInfo)
 {
     return(await _repository.UpdateAsync(YaeherPatientCollectionInfo));
 }
コード例 #2
0
        public async Task <YaeherPatientCollection> CreateYaeherPatientCollection(YaeherPatientCollection YaeherPatientCollectionInfo)
        {
            YaeherPatientCollectionInfo.Id = await _repository.InsertAndGetIdAsync(YaeherPatientCollectionInfo);

            return(YaeherPatientCollectionInfo);
        }