Exemplo n.º 1
0
        /// <summary>
        /// To Get All Counties
        /// </summary>
        /// <param name="districtID"></param>
        /// <returns></returns>
        public CountyList GetAllCounties(int districtID)
        {
            CountyDAL CountyDALobj = new CountyDAL();

            return(CountyDALobj.GetAllCounties(districtID));
        }
Exemplo n.º 2
0
        /// <summary>
        /// To Get Counties
        /// </summary>
        /// <param name="County"></param>
        /// <returns></returns>
        public CountyList GetCounties(string County)
        {
            CountyDAL CountyDALobj = new CountyDAL();

            return(CountyDALobj.GetCounties(County));
        }
Exemplo n.º 3
0
        /// <summary>
        /// To Get County
        /// </summary>
        /// <param name="districtID"></param>
        /// <returns></returns>
        public CountyList GetCounty(string districtID)
        {
            CountyDAL objcountyDAL = new CountyDAL();

            return(objcountyDAL.GetCounty(districtID));
        }