public async Task <IEnumerable <SubDistrictModel> > GetSubDistrictByDistrictId(int DistrictId)
        {
            var response = await JongSnamServices.GetSubDistrictByDistrictIdWithHttpMessagesAsync(DistrictId);

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

            return(respondModel);
        }