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