Ejemplo n.º 1
0
        /// <summary>
        /// 2. Load employee name in the combo box employee -> call the info employee from data base and returns the info in a table
        /// </summary>
        /// <returns>an employee info table</returns>
        public DataTable EmployeeList()
        {
            // 1. Obj DataTable
            DataTable Table = new DataTable();

            // 2. Info Employee in Table Object
            Table = Model.EmployeeList();
            // 3. Make return
            return(Table);
        }