public static void Delete(short pCustomerAcctId, int pVendorId)
 {
     using (Rbr_Db _db = new Rbr_Db()) {
         using (Transaction _tx = new Transaction(_db, pCustomerAcctId, pVendorId)) {
             CustomerSupportManager.DeleteCustomerSupportMap(_db, pCustomerAcctId, pVendorId);
             _tx.Commit();
         }
     }
 }