Exemplo n.º 1
0
    protected void loadUCList()
    {
        UserModule userModule = new UserModule();
        uc_list.DataSource = userModule.getUsersByRole("UNITCOORDINATOR", 0, 9999); //Get it up first before we optimize this

        uc_list.DataBind();
    }
    protected void loadStudentList()
    {
        UserModule userModule = new UserModule();
        student_list.DataSource = userModule.getUsersByRole("STUDENT", 0, 9999); //Get it up first before we optimize this

        student_list.DataBind();
    }
    protected void loadPartnerList()
    {
        UserModule userModule = new UserModule();
        company_list.DataSource = userModule.getUsersByRole("PARTNER", 0, 9999); //Get it up first before we optimize this

        company_list.DataBind();
    }