コード例 #1
0
 public vcWorkSpaceLabel(EntityLesson wsLesson, EntityLessonDetail wsLessonDetail)
 {
     this._wsLesson       = wsLesson;
     this._wsLessonDetail = wsLessonDetail;
     // Logic so we know this constructor was used
     // This may not be needed but it "may" be handy in the future depending on "where I create this class
     this._bDataPassedIn = true;
     Initialize();
 }
コード例 #2
0
 public void Add(EntityLessonDetail _lessonDetail)
 {
     // Check if this lessondetail has been loaded
     if (!this.Any(y => y.LessonDetail.LessonSeq == _lessonDetail.LessonSeq))
     {
         // *******************
         // Creation of LessonNumletSet
         var x = new LessonNumletSet();
         x.MyWorkSpaceParent  = this.MyWorkSpaceParent;
         x.MyLessonListParent = this as LessonList <LessonNumletSet>;
         x.LessonDetail       = _lessonDetail;
     }
 }
コード例 #3
0
 public void SetLessonDetailCell(vcLessonMenu controller, EntityLessonDetail lessonDetail, NSIndexPath indexPath)
 {
     // TODO: Here is where we must build our numberlabel display
     //this.lblEquation.Text = lessonDetail.Equation;
 }