Ejemplo n.º 1
0
        private void BindInstructorList()
        {
            InstructorCollection instructorList = new InstructorCollection();

            instructorList = InstructorDAL.GetCollection();
            rptInstructorList.DataSource = instructorList;
            rptInstructorList.DataBind();
        }
Ejemplo n.º 2
0
 public static InstructorCollection GetCollection()
 {
     return(InstructorDAL.GetCollection());
 }