예제 #1
0
파일: WTPRow.cs 프로젝트: PavelChechin/WTP
        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)
 {
 }