public HttpResponseMessage DeleteMerchantContacts(int merchantId, int contactId)
 {
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         return this.Request.CreateResponse(HttpStatusCode.OK, mt.DeleteMerchantContacts(contactId));
     }
 }