Пример #1
0
 public void UpdateEncounter(Encounter encounter)
 {
     Encounter     = encounter;
     ResponseStore = ReadResponses(Encounter);
     UpdateResponseQuestions();
 }
Пример #2
0
        public static Encounter CreateNew(Guid formId, Guid encounterTypeId, Guid clientId, Guid providerId, Guid userId, Guid practiceId, Guid deviceId, Guid?indexClientId)
        {
            var encounter = new Encounter(formId, encounterTypeId, clientId, providerId, userId, practiceId, deviceId, indexClientId);

            return(encounter);
        }