Exemplo n.º 1
0
        private void init(int identifier
                          , ChroniGenNHibernate.EN.Chroni.EncounterEN encounter, ChroniGenNHibernate.EN.Chroni.ConditionCodeEN conditionCode, ChroniGenNHibernate.Enumerated.Chroni.ConditionCategoryEnum category, ChroniGenNHibernate.Enumerated.Chroni.ConditionClinicalStatusEnum clinicalStatus, ChroniGenNHibernate.Enumerated.Chroni.ConditionSeverityEnum severity, string onset, string abatement, string note)
        {
            this.Identifier = identifier;


            this.Encounter = encounter;

            this.ConditionCode = conditionCode;

            this.Category = category;

            this.ClinicalStatus = clinicalStatus;

            this.Severity = severity;

            this.Onset = onset;

            this.Abatement = abatement;

            this.Note = note;
        }
Exemplo n.º 2
0
        private void init(int identifier
                          , ChroniGenNHibernate.Enumerated.Chroni.SlotStatusEnum status, Nullable <DateTime> startDate, Nullable <DateTime> endDate, string note, ChroniGenNHibernate.EN.Chroni.EncounterEN encounter, ChroniGenNHibernate.EN.Chroni.ScheduleEN schedule)
        {
            this.Identifier = identifier;


            this.Status = status;

            this.StartDate = startDate;

            this.EndDate = endDate;

            this.Note = note;

            this.Encounter = encounter;

            this.Schedule = schedule;
        }
Exemplo n.º 3
0
 public SlotEN(int identifier, ChroniGenNHibernate.Enumerated.Chroni.SlotStatusEnum status, Nullable <DateTime> startDate, Nullable <DateTime> endDate, string note, ChroniGenNHibernate.EN.Chroni.EncounterEN encounter, ChroniGenNHibernate.EN.Chroni.ScheduleEN schedule
               )
 {
     this.init(Identifier, status, startDate, endDate, note, encounter, schedule);
 }
Exemplo n.º 4
0
        private void init(int identifier
                          , string subject, ChroniGenNHibernate.Enumerated.Chroni.CarePlanStatusEnum status, string context, Nullable <DateTime> startDate, Nullable <DateTime> modified, string description, string note, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.ActivityEN> activity, ChroniGenNHibernate.EN.Chroni.EncounterEN encounter, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.GoalEN> goal, Nullable <DateTime> endDate, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.CarePlanCategoryEN> carePlanCategory)
        {
            this.Identifier = identifier;


            this.Subject = subject;

            this.Status = status;

            this.Context = context;

            this.StartDate = startDate;

            this.Modified = modified;

            this.Description = description;

            this.Note = note;

            this.Activity = activity;

            this.Encounter = encounter;

            this.Goal = goal;

            this.EndDate = endDate;

            this.CarePlanCategory = carePlanCategory;
        }
Exemplo n.º 5
0
 public CarePlanEN(int identifier, string subject, ChroniGenNHibernate.Enumerated.Chroni.CarePlanStatusEnum status, string context, Nullable <DateTime> startDate, Nullable <DateTime> modified, string description, string note, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.ActivityEN> activity, ChroniGenNHibernate.EN.Chroni.EncounterEN encounter, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.GoalEN> goal, Nullable <DateTime> endDate, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.CarePlanCategoryEN> carePlanCategory
                   )
 {
     this.init(Identifier, subject, status, context, startDate, modified, description, note, activity, encounter, goal, endDate, carePlanCategory);
 }
Exemplo n.º 6
0
 public ConditionEN(int identifier, ChroniGenNHibernate.EN.Chroni.EncounterEN encounter, ChroniGenNHibernate.EN.Chroni.ConditionCodeEN conditionCode, ChroniGenNHibernate.Enumerated.Chroni.ConditionCategoryEnum category, ChroniGenNHibernate.Enumerated.Chroni.ConditionClinicalStatusEnum clinicalStatus, ChroniGenNHibernate.Enumerated.Chroni.ConditionSeverityEnum severity, string onset, string abatement, string note
                    )
 {
     this.init(Identifier, encounter, conditionCode, category, clinicalStatus, severity, onset, abatement, note);
 }