public async Task <bool> UpdateStore(int id, UpdateStoreRequest updateStoreRequest)
        {
            try
            {
                var response = await JongSnamServices.UpdateStoreWithHttpMessagesAsync(id, updateStoreRequest, CustomHeaders);

                return(true);
            }
            catch (Exception ex)
            {
                return(false);

                throw ex;
            }
        }