Ejemplo n.º 1
0
        public List <GDictionaryModel> FetMandalsOfDistrct(int DistrictId)
        {
            List <GDictionary>      gdEntityList = new List <GDictionary>();
            List <GDictionaryModel> gdModel      = new List <GDictionaryModel>();

            ServiceLayer.InformationService obj       = new InformationService();
            InformationObjectMapper         objmapper = new InformationObjectMapper();

            gdEntityList = obj.FetMandalsOfDistrct(DistrictId);
            gdModel      = objmapper.MapGDictionaryEntityListToModelList(gdEntityList);
            return(gdModel);
        }