public HttpResponseMessage RetrieveMerchantOwnersInformation(int OwnerId)
 {
     MPMerchantOwnerDetailModel response;
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         response = mt.RetrieveMerchantOwnersInformation(OwnerId);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }