/// <summary>
 /// Method to get the list of themes for a tribute
 /// </summary>
 /// <param name="objTributeType">Type of Tribute</param>
 public List<Templates> GetThemes(Templates objTributeType)
 {
     TemplateResource objTheme = new TemplateResource();
     return objTheme.GetTemplates(objTributeType.TributeType);
 }
 public List<Templates> GetTemplateList(string strTheme)
 {
     TemplateResource objTemplate = new TemplateResource();
     return objTemplate.GetTemplates(strTheme);
 }