/// <summary>
 /// Method to get the theme for tribute
 /// </summary>
 public Templates GetExistingTheme()
 {
     Tributes objTribute = new Tributes();
     MiscellaneousController _controller = new MiscellaneousController();
     try
     {
         objTribute.TributeId = _tributeId;
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return _controller.GetThemeForTribute(objTribute);
 }