示例#1
0
        /// <summary>
        /// Date Created: 25/08/2011
        /// Created By: Gabriel Oquialda
        /// (description) Selecting country list by branch id
        /// </summary>
        public static DataTable CountryListByBranchID(Int32 BranchID)
        {
            DataTable dt = null;

            try
            {
                dt = VehicleDAL.CountryListByBranchID(BranchID);
                return(dt);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                if (dt != null)
                {
                    dt.Dispose();
                }
            }
        }