/// <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)); }
/// <summary> /// To Get Counties /// </summary> /// <param name="County"></param> /// <returns></returns> public CountyList GetCounties(string County) { CountyDAL CountyDALobj = new CountyDAL(); return(CountyDALobj.GetCounties(County)); }
/// <summary> /// To Get County /// </summary> /// <param name="districtID"></param> /// <returns></returns> public CountyList GetCounty(string districtID) { CountyDAL objcountyDAL = new CountyDAL(); return(objcountyDAL.GetCounty(districtID)); }