public HttpResponseMessage RetrieveMerchantProfileInformation(int ProfileId)
 {
     MPMerchantProfileDetailModel response;
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         response = mt.RetrieveMerchantProfile(ProfileId);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }