public async Task <IEnumerable <DistrictModel> > GetDistrictByProvinceId(int ProvinceId)
        {
            var response = await JongSnamServices.GetDistrictByProvinceIdWithHttpMessagesAsync(ProvinceId);

            var respondModel = await GetRespondDtoHandlerHttpStatus <IEnumerable <DistrictModel> >(response);

            return(respondModel);
        }