コード例 #1
0
        public List <Attributes> GetAllCitiesByCountryId([FromBody] string CountryId)
        {
            var response = new List <Attributes>();

            response = _MasterRepository.GetAllCitiesByCountryId(CountryId);
            return(response);
        }