private void init(int identifier
                          , string progress, string description, ChroniGenNHibernate.EN.Chroni.CarePlanEN carePlan, Nullable <DateTime> startDate, Nullable <DateTime> endDate, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.MedicationEN> medication)
        {
            this.Identifier = identifier;


            this.Progress = progress;

            this.Description = description;

            this.CarePlan = carePlan;

            this.StartDate = startDate;

            this.EndDate = endDate;

            this.Medication = medication;
        }
Esempio n. 2
0
        private void init(int identifier
                          , string subject, Nullable <DateTime> statusDate, string target, ChroniGenNHibernate.Enumerated.Chroni.GoalCategoryEnum category, string description, ChroniGenNHibernate.Enumerated.Chroni.GoalStatusEnum status, ChroniGenNHibernate.Enumerated.Chroni.GoalPriorityEnum priority, string note, ChroniGenNHibernate.EN.Chroni.CarePlanEN carePlan)
        {
            this.Identifier = identifier;


            this.Subject = subject;

            this.StatusDate = statusDate;

            this.Target = target;

            this.Category = category;

            this.Description = description;

            this.Status = status;

            this.Priority = priority;

            this.Note = note;

            this.CarePlan = carePlan;
        }
Esempio n. 3
0
 public GoalEN(int identifier, string subject, Nullable <DateTime> statusDate, string target, ChroniGenNHibernate.Enumerated.Chroni.GoalCategoryEnum category, string description, ChroniGenNHibernate.Enumerated.Chroni.GoalStatusEnum status, ChroniGenNHibernate.Enumerated.Chroni.GoalPriorityEnum priority, string note, ChroniGenNHibernate.EN.Chroni.CarePlanEN carePlan
               )
 {
     this.init(Identifier, subject, statusDate, target, category, description, status, priority, note, carePlan);
 }
 public ActivityEN(int identifier, string progress, string description, ChroniGenNHibernate.EN.Chroni.CarePlanEN carePlan, Nullable <DateTime> startDate, Nullable <DateTime> endDate, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.MedicationEN> medication
                   )
 {
     this.init(Identifier, progress, description, carePlan, startDate, endDate, medication);
 }