//Update tribute name
 public void UpdateTributeName(object[] tribute)
 {
     TributeResource objResource = new TributeResource();
     using (TransactionScope trans = new TransactionScope())
     {
         objResource.UpdateTributeName(tribute);
         trans.Complete();
     }
 }