示例#1
0
        public WTPRow(WTPRows Rows, IWTPROW WtpRow)
            : base(WtpRow, Rows)
        {
            Semesters = new WTPSemesters(this);
            Values    = new WTPRowValues(this);
            Practices = new WTPPractices(this);

            Semesters.PropertyChanged += OnPropertyChanged;
            Values.PropertyChanged    += OnPropertyChanged;
            WtpRow.PropertyChanging   += DataRow_PropertyChanging;
        }
示例#2
0
 public WTPPractice(WTPPractices Practices, IWTPPRACTICE PracticeDataRow)
     : base(PracticeDataRow)
 {
 }