public async Task <MerchantLocation> UpdateAsync(MerchantLocation merchantLocation)
        {
            try
            {
                var content = await HttpHelper.Request(Constants.FACEOFFERS_AUTH_TOKEN, Constants.FACEOFFERS_API_URL, "api/MerchantLocations", merchantLocation, HttpRequestType.PUT);

                return(await content.ReadAsAsync <MerchantLocation>());
            }
            catch (Exception e)
            {
                throw;
            }
        }
 public async Task DeleteAsync(MerchantLocation merchantLocation)
 {
     throw new NotImplementedException();
 }