public async Task <YaeherPatientCollection> UpdateYaeherPatientCollection(YaeherPatientCollection YaeherPatientCollectionInfo)
 {
     return(await _repository.UpdateAsync(YaeherPatientCollectionInfo));
 }
        public async Task <YaeherPatientCollection> CreateYaeherPatientCollection(YaeherPatientCollection YaeherPatientCollectionInfo)
        {
            YaeherPatientCollectionInfo.Id = await _repository.InsertAndGetIdAsync(YaeherPatientCollectionInfo);

            return(YaeherPatientCollectionInfo);
        }