/// <summary>
 /// Method to update information regarding the donation box
 /// this only updaes info at our end not at the epartners end
 /// </summary>
 /// <param name="objTributes"></param>
 public void UpdateDonationDetails(object[] objTributes)
 {
     TributeResource objResource = new TributeResource();
     using (TransactionScope trans = new TransactionScope())
     {
         objResource.UpdateDonationDetails(objTributes);
         trans.Complete();
     }
 }