Пример #1
0
        /// <summary>
        /// 8. fnc.select client from tclient by Agency in the data base
        /// </summary>
        /// <returns>a client info table</returns>
        public DataTable selectqclientByAgency(string agencyName)
        {
            // 1. Obj DataTable
            DataTable Table = new DataTable();

            // 2. Info client by Agency in Table Object
            Table = Model.selectqclientByAgency(agencyName);
            // 3. Make return
            return(Table);
        }