コード例 #1
0
ファイル: PatientsService.cs プロジェクト: coconutzZz/EE.Ord
        public IQueryable <Patient> FindPatient(Patient patient)
        {
            IQueryable <Patient> storagePatient = _storageBroker.FindPatient(patient);

            return(storagePatient);
        }