예제 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         DepartmentsService departmentsService = new DepartmentsService();
         repeaterDepartments.DataSource = departmentsService.GetAllDepartments();
         repeaterDepartments.DataBind();
     }
 }
예제 #2
0
        public static List <Departments> GetAllDepartments()
        {
            DepartmentsService departmentsService = new DepartmentsService();

            return(departmentsService.GetAllDepartments());
        }