public object SaveTribute(Tributes tributes)
        {
            TributeResource objTributes = new TributeResource();
            object[] obj ={ tributes };

            object objTributeReturn = new object();
            using (TransactionScope trans = new TransactionScope())
            {
                objTributeReturn = objTributes.InsertTribute(obj);
                //Transaction Commited
                trans.Complete();
            }
            return objTributeReturn;
        }