Exemplo n.º 1
0
        /// <summary>
        /// 4. Load clients in the data grid view -> call the info clients from data base and returns the info in a table
        /// </summary>
        /// <returns>a clients info table</returns>
        public DataTable LoadClients()
        {
            // 1. Obj DataTable
            DataTable Table = new DataTable();

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