Esempio n. 1
0
        public LookupCounty GetCountyDetailsByWardName(string wardName)
        {
            LookupCountyRepository lookupCountyRepository = new LookupCountyRepository();

            return(lookupCountyRepository.GetCountyDetailsByWardName(wardName));
        }
Esempio n. 2
0
        public string GetCountyNameBySubCountyId(int subCountyId)
        {
            LookupCountyRepository lookupCountyRepository = new LookupCountyRepository();

            return(lookupCountyRepository.GetSubCountyNameBySubCountyId(subCountyId));
        }
Esempio n. 3
0
        public string GetWardNameByWardId(int wardId)
        {
            LookupCountyRepository lookupCountyRepository = new LookupCountyRepository();

            return(lookupCountyRepository.GetWardNameByWardId(wardId));
        }
Esempio n. 4
0
        public string GetCountyByCountyId(int countyId)
        {
            LookupCountyRepository lookupCountyRepository = new LookupCountyRepository();

            return(lookupCountyRepository.GetCountyByCountyId(countyId));
        }