Exemplo n.º 1
0
        /// <summary>
        /// Date Created: 15/7/2011
        /// Created By: Ryan Bautista
        /// (description) Selecting City List By Vendor ID
        /// </summary>
        public static DataTable CityListByVendorID(Int32 VendorID)
        {
            DataTable dt = null;

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